当前位置: 代码迷 >> Java相关 >> jdom 操作xml有关问题
  详细解决方案

jdom 操作xml有关问题

热度:8043   发布时间:2013-02-25 21:45:51.0
jdom 操作xml问题
String str=new XMLOutputter().outputString(document);
FileWriter filewriter=new FileWriter(new File("g:\\share\\test2.ktr"));
filewriter.write(str);


为什么 xml文件没有写入完整 是不是因为XMLOutputter().outputString(document);字符数限制。

------解决方案--------------------------------------------------------

是不是没有filewriter.close();
  相关解决方案