import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; public class Credentials { String login; String hash; Credentials(String lg, String pw){ login = lg; hash = pw; } public boolean valid(){ /* String line; ArrayList result = new ArrayList(); try { FileReader fr = new FileReader(passwd.txt); BufferedReader br = new BufferedReader(fr); while ((line = br.readLine()) != null) result.add(line); br.close(); } catch (IOException e) { e.printStackTrace(); } return result.toArray(new String[]{}); */ return false; } }