我想从字符串创建 xml 文件,即我有一个要转换为 xml 文件的字符串,怎么做?
问问题
124 次
1 回答
1
试试下面的代码:
String pathname="D:\\XML files\\text.xml"; //specify your file path here
FileWriter out=new FileWriter(pathname);
out.write(str); // Assuming that str contains text to be writen in xml file i.e. well formed xml string
out.close();
如果以上不起作用,请写:
out.write(str.trim());
反而。
于 2012-06-11T15:13:55.480 回答