如何将字符串保存到java中的.txt文件中

How to save a string to a .txt file in java

本问题已经有最佳答案,请猛点这里访问。

我完成了一个应用程序,并测试了所有功能,他们正在工作。 但是,输入数据的一部分应该保存到.txt文件中。 我把它放在一个字符串里但是我在这个区域有点超出我的深度并且不知道如何将它保存到我的PC上的驱动器中。 任何帮助表示赞赏。 代码在以下链接:http://sharetext.org/fSy2


试试这个:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public static void main(String args[])throws IOException {

  File file = new File("Hello1.txt");
  // creates the file
  file.createNewFile();
  // creates a FileWriter Object
  FileWriter writer = new FileWriter(file);
  // Writes the content to the file
  writer.write("This
 is
 an
 example
"
);
  writer.flush();
  writer.close();
}

阅读更多相关信息