Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. import java.io.*;
  2.  
  3. public class IOTest {
  4.  
  5.     public static void main(String args[]) {
  6.         try {
  7.  
  8.             PrintWriter p = new PrintWriter(new BufferedWriter(new FileWriter("test.txt")));
  9.             p.println("We'll be doing a quiz just to check tonight who is with us");
  10.             p.close();
  11.            
  12.         } catch(Exception e) {}
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement