...
Code Block | ||
---|---|---|
| ||
public class Login { static void checkPassword(String password_file) throws IOException { BufferedReader reader = new BufferedReader(new FileReader(password_file)); try { // Compare credentials } finally { try { // Enclose in try-catch block reader.close(); } catch (IOException ie) {ie.getMessage(); // Forward to handler } // Other clean-up code } } public static void main(String[] args) throws IOException { String path = "password"; checkPassword(path); } } |
...