我有一个SQL查询,它返回存储在字符串变量中的XML数据。当我将String写入文件时,它只给出了文件中的最后一行。
BufferedWriter out=null;
try {
out = new BufferedWriter(new FileWriter("out.xml",true));
out.write(XMLout);
out.newLine();
out.flush();
out.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
我想按原样编写整个XML数据。