このような方法があります。
public void myMethod(String xml){
...
File file=convertStringToFile(xml) // I need to convert xml string to File
object.fileDemandingMethod(file);
}
fileDemandingMethod(file) は File を期待していますが、私の入力は文字列です。
xml 文字列を File オブジェクトの形式で取得するにはどうすればよいですか?
この JAXB 検証にはこれが必要です
Schema schema = schemaFactory.newSchema(new File("C:\\schema.xsd"));
unmarshaller.setSchema(schema );