Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. package com.company;
  2. import java.io.FileNotFoundException;
  3. import java.io.FileReader;
  4. import java.util.*;
  5. public class Main {
  6.  
  7. public static void main(String[] args) {
  8. int[] arr = new int[6];
  9. try {
  10. FileReader file = new FileReader("C:\\Users\\gzero\\OneDrive\\Desktop\\lab stuff.txt");
  11. } catch (FileNotFoundException e) {
  12. e.printStackTrace();
  13. System.out.println("lab stuff.txt doesn't exist");
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement