Advertisement
Guest User

Untitled

a guest
May 24th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. import java.io.*;
  2.  
  3. public class Main {
  4. public static void main(String[] args) {
  5. FileWriter fw = null;
  6. try {
  7. fw = new FileWriter("data.txt");
  8. fw.write("Hello.");
  9. } catch(IOException e) {
  10. System.out.println("エラー");
  11. } finally {
  12. fw.close();
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement