image.png

例子

  1. import java.io.*;
  2. public class Main {
  3. public static void main(String[] args) throws Exception {
  4. PrintWriter po = new PrintWriter(System.out);
  5. PrintWriter po2 = new PrintWriter("./pw.txt");
  6. po.write("asujudhbg");
  7. po2.write("asujudhbg");
  8. // flush + close
  9. po.close();
  10. po2.close();
  11. }
  12. }