保存.jar文件的不同版本



我正在netbeans 7.0.1中编写一个程序,用于存储D&D的字符表。我需要把它作为一个可执行的jar来运行,这样我的朋友也可以使用它。如何为它添加保存对工作表更改的功能?比如,保存用户在文本域中输入的内容?非常感谢!

import java.io.*;
class FileWrite 
{
 public static void main(String args[])
  {
  try{
  // Create file 
  FileWriter fstream = new FileWriter("out.txt");
  BufferedWriter out = new BufferedWriter(fstream);
  out.write("Hello Java"); <- here goes what is on the input fields
  //Close the output stream
  out.close();
  }catch (Exception e){//Catch exception if any
  System.err.println("Error: " + e.getMessage());
  }
  }
}

如果您是一个非常新的程序员,我建议您首先编写应用程序的控制台版本。一些相关的类将是BufferedReader用于获取用户输入,FileReader/FileWriter用于读取/保存文件。快速搜索"java读取用户输入"one_answers"java读取写入文件"应该足以让您开始。

相关内容

  • 没有找到相关文章

最新更新