无法追加

发布于 2024-11-09 09:53:37 字数 428 浏览 0 评论 0原文

这是代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

哀由 2024-11-16 09:53:37

不要忘记刷新缓冲区——或者明确关闭编写器(效果相同)!

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);
   fw.flush(); //or simply fw.close();
 }
}

don't forget to flush your buffer -- or close the writer explicitely (which does the same)!

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);
   fw.flush(); //or simply fw.close();
 }
}
赠佳期 2024-11-16 09:53:37

您应该关闭流: <代码>fw.close();

You should close the stream: fw.close();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文