我知道在stackoverflow上從Java寫入XML有很多問題,但這太複雜了。我覺得我有一個非常簡單的問題,我無法弄清楚。從Java寫入XML文檔 - 簡單
所以我有一個程序,需要一堆的用戶輸入,我有它當前創建和附加文本文件的結果。我只是張貼我寫代碼在這裏:
PrintWriter out = null;
try {
out = new PrintWriter(new BufferedWriter(new FileWriter("C:/Documents and Settings/blank/My Documents/test/test.txt", true)));
out.println("");
out.println("<event title=\""+titleFieldUI+"\"");
out.println(" start=\""+monthLongUI+" "+dayLongUI+" "+yearLongUI+" 00:00:00 EST"+"\"");
out.println(" isDuration=\"true\"");
out.println(" color=\""+sValue+"\"");
out.println(" end=\""+monthLong1UI+" "+dayLong1UI+" "+yearLong1UI+" 00:00:00 EST"+"\"");
out.println(" "+descriptionUI);
out.println("");
out.println("</event>");
out.println(" <!-- Above event added by: " +System.getProperty("user.name")+" " +
"on: "+month+"/"+day+"/"+year+" -->");
}catch (IOException e) {
System.err.println(e);
}finally{
if(out != null){
out.close();
}
}
所以最後,我希望它寫入到一個已經存在的XML文件(我可以通過簡單地改變在我的作者接着做)。問題是,這個XML文件有一個根標籤<data>
。我需要將我的程序的結果放在XML文件的底部,但是在進入</data>
之前。這是唯一的要求。我發現的一切似乎太複雜,我不知道它..
任何幫助非常感謝!
如何在JDOM中添加對XML文檔的評論? – MariuszS 2013-04-04 20:59:07
@MariuszS:我不知道,所以我查看了文檔。它並沒有耗費我很長時間,我相信它不會讓你長時間:) – 2013-04-04 21:00:47
好的,謝謝你的回答:D – MariuszS 2013-04-04 21:05:47