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();