Java文件-打开文件并写入文件

我知道我们应该在问题中添加一些代码,但是我非常傻眼,无法束手无策,也找不到任何可循的例子。

基本上,我想打开文件 ,其中已经包含内容,并在末尾写一个字符串。基本上是这样的。

文件A.txt包含:

John

Bob

Larry

我想打开它并在末尾写Sue,所以文件现在包含:

John

Bob

Larry

Sue

抱歉,没有代码示例,今天早上我的大脑死了。

回答:

请搜索Larry Page和Sergey Brin向全世界发布的Google。

BufferedWriter out = null;

try {

FileWriter fstream = new FileWriter("out.txt", true); //true tells to append data.

out = new BufferedWriter(fstream);

out.write("\nsue");

}

catch (IOException e) {

System.err.println("Error: " + e.getMessage());

}

finally {

if(out != null) {

out.close();

}

}

以上是 Java文件-打开文件并写入文件 的全部内容, 来源链接: utcz.com/qa/399903.html

回到顶部