public static void saveAsTxt(String savePath, StringBuilder content) throws IOException
{
System.out.println("begin save");
File fileName = new File(savePath);
try
{
//打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件
FileWriter writer = new FileWriter(fileName, true);
writer.write(content.toString());
writer.close();
}
catch (IOException e)
{
e.printStackTrace();
}
System.out.println("保存成功!路径为:" + savePath);
}
java 以追加形式写txt文件
最新推荐文章于 2023-03-09 16:54:25 发布