Guest User

Untitled

a guest
Aug 15th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public class FileWriterTest {
  2. public static void main(String[] args) {
  3. String fileName = "test.txt";
  4. try(
  5. FileWriter fileWriter = new FileWriter(fileName);
  6. BufferedWriter writer = new BufferedWriter(fileWriter);
  7. ) {
  8. writer.write("Hello");
  9. } catch(IOException e) {
  10. e.printStackTrace();
  11. }
  12. }
  13. }
Add Comment
Please, Sign In to add comment