Admin password is now stored.

This commit is contained in:
Deathsbreed 2014-11-15 23:47:21 -06:00
parent 8c2c09a339
commit b9540f162f
2 changed files with 22 additions and 2 deletions

View File

@ -83,7 +83,7 @@ public class Client implements Runnable {
private void start() throws IOException {
console = new BufferedReader(new InputStreamReader(System.in));
streamOut = new DataOutputStream(socket.getOutputStream());
if(thread == null) {
cThread = new ClientThread(this, socket);
thread = new Thread(this);

View File

@ -45,6 +45,15 @@ public class Server implements Runnable {
} catch(IOException e) {
System.out.println(e);
}
try {
BufferedReader br = new BufferedReader(new FileReader("adminpasswd.txt"));
try {
passwd = br.readLine();
} catch(IOException ioe) {
System.out.println("Error reading from adminpassword.txt.");
}
} catch(FileNotFoundException fnfe) { System.out.println("No adminpasswd.txt file."); }
}
// The run method that will be called every frame
@ -182,5 +191,16 @@ public class Server implements Runnable {
public String getPasswd() { return passwd; }
// Setter methods
public void setPasswd(String npasswd) { this.passwd = npasswd; }
public void setPasswd(String npasswd) {
this.passwd = npasswd;
try {
PrintWriter writer = new PrintWriter("adminpasswd.txt", "UTF-8");
writer.println(npasswd);
writer.close();
} catch(UnsupportedEncodingException uee) {
System.out.println("Error writing new password to adminpasswd.txt");
} catch(FileNotFoundException fnfe) {
System.out.println("Error writing new password to adminpasswd.txt");
}
}
}