无法追加
这是代码:
import java.io.*;
class tester {
public static void main(String args[])throws IOException {
File f=new File("d:/testerf.txt");
FileWriter fw=new FileWriter(f,true);
String s="Working";
char buffer[]=new char[s.length()];
s.getChars(0,s.length(),buffer,0);
fw.write(buffer);
}
}
单词 working
未附加在文件 testerf.txt
中。文件没有任何反应。 为什么没有附加“工作”一词?
This is the code :
import java.io.*;
class tester {
public static void main(String args[])throws IOException {
File f=new File("d:/testerf.txt");
FileWriter fw=new FileWriter(f,true);
String s="Working";
char buffer[]=new char[s.length()];
s.getChars(0,s.length(),buffer,0);
fw.write(buffer);
}
}
The word working
is not appended in the file testerf.txt
.Nothing happens to the file.
Why the word working
is not appended?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要忘记刷新缓冲区——或者明确关闭编写器(效果相同)!
don't forget to flush your buffer -- or close the writer explicitely (which does the same)!
您应该关闭流: <代码>fw.close();
You should close the stream:
fw.close();