例子

  1. import java.io.*;
  2. public class Main {
  3. public static void main(String[] args) throws Exception {
  4. String path = "./story.txt";
  5. boolean append = false;
  6. String charset = "gbk";
  7. FileOutputStream fos = new FileOutputStream(path, append);
  8. OutputStreamWriter osw = new OutputStreamWriter(fos, charset);
  9. osw.write("hello world!");
  10. osw.close();
  11. }
  12. }