// 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());
以上是作爲教程的一部分給予我的。我把它變成了這個。java括號和可能的XML/XSD問題:)
public class SaveToFile extends ImageAnnotationInstance {
{
AnnotationBuilder.saveToFile (imageAnnotation, "./test.xml", pathXSD);
{
System.out.println(AnnotationBuilder.getAimXMLsaveResult());
}
} }
首先,我的括號是否正確? 如果是這樣,我不斷收到pathXSD部分的錯誤。我猜我應該放在一條路上,但不知道如何。這是一個問XML問題的人嗎?
順便說一句,我是一個Java noob,所以如果我的問題是愚蠢的,非常抱歉。
更新: 我只是用代碼打轉轉,現在,嘗試了這一點。
public class SaveToFile extends ImageAnnotationInstance {
AnnotationBuilder.saveToFile (imageAnnotation, "./test.xml", pathXSD);
public static void main(String[] args)
{
System.out.println(AnnotationBuilder.getAimXMLsaveResult());
}
}
現在有與 「./test.xml」 部分的錯誤...
你的大括號根本不需要。首先,您應該嘗試閱讀Java教程以瞭解Java語法。 –
我已經在java上課了,所以我知道。然而,當我第一次沒有括號的時候,我每次都會收到錯誤,這就是爲什麼我把它們放進去的原因。但是當我把它放在括號裏時,它只給了我一個部分的錯誤,這就是爲什麼我很困惑 – user2499705