我是靠谱客的博主 魔幻时光,最近开发中收集的这篇文章主要介绍Java文件操作:以追加的方式输出文本,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述


// 以追加的方式将文本输出到本地文件中
public static void writeTextAppendLocalFile(String localFilePath, String content) {
File file = new File(localFilePath);
file.mkdir();
file = new File(localFilePath + "\java-input-file.txt");
FileOutputStream fos = null;
OutputStreamWriter osw = null;
try {
if (!file.exists()) {
boolean hasFile = file.createNewFile();
if (hasFile) {
// System.out.println("file not exists, create new file");
}
fos = new FileOutputStream(file);
} else {
// System.out.println("file exists");
fos = new FileOutputStream(file, true);
}
osw = new OutputStreamWriter(fos, "utf-8");
osw.write(content);
osw.write("rn");
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if (osw != null) {
osw.close();
}
} catch (IOException e) {
e.printStackTrace();
}
try {
if (fos != null) {
fos.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}

最后

以上就是魔幻时光为你收集整理的Java文件操作:以追加的方式输出文本的全部内容,希望文章能够帮你解决Java文件操作:以追加的方式输出文本所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部