// Always I check the ImageAnnotation if it valid based on the AIM XML Schema
AnnotationBuilder.saveToFile (imageAnnotation, "./test.xml", pathXSD);
// Printing saving operation’s result. Instead of using try/catch blocks, you can see the any error message
// by using AnnotationBuilder.getAimXMLsaveResult() method.
System.out.println(AnnotationBuilder.getAimXMLsaveResult());
以上是作为教程的一部分提供给我的。我把它变成了这个。
public class SaveToFile extends ImageAnnotationInstance {
{
AnnotationBuilder.saveToFile (imageAnnotation, "./test.xml", pathXSD);
{
System.out.println(AnnotationBuilder.getAimXMLsaveResult());
}
} }
首先,我的括号正确吗?如果是这样,我在 pathXSD 部分不断收到错误消息。我猜我应该输入一条路径,但不确定如何。这是要问 XML 人的问题吗?
顺便说一句,我是一个 Java 菜鸟,如果我的问题很愚蠢,很抱歉。
更新:我现在只是在玩代码,并尝试了这个。
public class SaveToFile extends ImageAnnotationInstance {
AnnotationBuilder.saveToFile (imageAnnotation, "./test.xml", pathXSD);
public static void main(String[] args)
{
System.out.println(AnnotationBuilder.getAimXMLsaveResult());
}
}
现在“./test.xml”部分出现错误...