This commit is contained in:
amadoubahaa68134 2018-11-22 17:15:58 +01:00
parent 558fecdac3
commit 0821639d89

View File

@ -1,8 +1,4 @@
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import assets.Helpers;
public class Credentials {
@ -19,28 +15,36 @@ public class Credentials {
public boolean valid(){
/* String line;
ArrayList<String> result = new ArrayList<String>();
try {
FileReader fr = new FileReader(passwd.txt);
BufferedReader br = new BufferedReader(fr);
while ((line = br.readLine()) != null)
result.add(line);
br.close();
String[] lines = Helpers.readTextdatei("src/assets/passwd");
String tmp = "";
String name = "";
String pw = "";
for(int i=0; i<lines.length; i++) {
if(i % 2 == 0){
name = lines[i];
System.out.println( "NAME: " + name);
}else {
pw= lines[i];
System.out.println(pw);
}
compare(name, pw);
}
catch (IOException e) {
e.printStackTrace();
}
return result.toArray(new String[]{});
*/
return false;
}
private void compare(String name, String pw) {
if()
}
}