从字符串生成xml文件

时间:2012-06-07 09:11:06

标签: android xml string

我想从字符串创建xml文件,即我有一个我要转换成xml文件的字符串,怎么做?

1 个答案:

答案 0 :(得分: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());

代替。