我有这样的方法。
public void myMethod(String xml){
...
File file=convertStringToFile(xml) // I need to convert xml string to File
object.fileDemandingMethod(file);
}
fileDemandingMethod(file) 期待 File 但我的输入是字符串。
如何以 File 对象的形式获取我的 xml 字符串?
我需要这个来进行 JAXB 验证
Schema schema = schemaFactory.newSchema(new File("C:\\schema.xsd"));
unmarshaller.setSchema(schema );