TO CLARIFY: I can't even compile due to messages from Eclipse. First code snippet: input and inputBuffer are not recognized. Second code snippet, Eclipse wants me to switch switch "Compliance and JRE to 1.7"
I am new to try-with-resources and I can't quite understand the syntax or what I'm doing wrong. Here is my code
try { FileReader input = new FileReader(this.fileName); BufferedReader inputBuffer = new BufferedReader (input); String line; while ((line = inputBuffer.readLine()) != null) { String[] inputData = line.split(","); Node<Integer> newNode = new Node<Integer>(Integer.parseInt(inputData[0]), Integer.parseInt(inputData[1])); this.hashMap.add(newNode); } //inputBuffer.close(); //input.close(); }catch (NumberFormatException nfe){ System.out.println( "Repository could not load data due to NumberFormatException: " + nfe); }catch (FileNotFoundException fnfe) { System.out.println("File not found, error: " + fnfe); }finally { inputBuffer.close(); input.close(); } The finally block does not work, so i wanted to try
try (FileReader input = new FileReader(this.fileName)) { ...... }catch (FileNotFoundException e) { ...... }finally { inputBuffer.close(); input.close(); } However
I should also add BufferedReader to
try (...)... but how ?Also this requires me to switch "Compliance and JRE to 1.7". I don't know what that means and how that would affect my program so far, I'm not willing to do it until someone explains what it all means or if I'm doing something wrong.
EDIT
I moved declaration before try block and initialized with null, is this "ok" ?
FileReader input = null; BufferedReader inputBuffer = null; try { input = new FileReader(this.fileName); inputBuffer = new BufferedReader (input); ... } ...
input.close()it does not recognizeinputbecause it is within a try block. And in the second example I get another system message.