blob: 44dddb50d2a154fedc8483063ef64c6c2be4d2a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
package net.brysonsteck.Resurrection.player;
import net.brysonsteck.Resurrection.Resurrection;
import org.bukkit.plugin.java.JavaPlugin;
import java.io.*;
import java.util.Arrays;
import java.util.Hashtable;
public class PlayerData {
Hashtable<String, Hashtable<String, String>> playerData = new Hashtable<>();
String rawData;
public void saveData(String write) {
try {
FileWriter writer = new FileWriter("data/player.data");
writer.write(write);
writer.close();
readData();
} catch (IOException e) {
e.printStackTrace();
}
}
public void readData() {
try {
rawData = "";
BufferedReader reader = new BufferedReader(new FileReader("data/player.data"));
String line = "";
String[] playerData;
while (true) {
playerData = new String[3];
line = reader.readLine();
if (line == null) {
break;
}
rawData = rawData + line;
playerData = line.split(",");
Hashtable<String, String> playerHash = new Hashtable<>();
playerHash.put("dead", playerData[1]);
playerHash.put("timeLeft", playerData[2]);
this.playerData.put(playerData[0], playerHash);
}
} catch (IOException e) {
e.printStackTrace();
}
}
public Hashtable<String, Hashtable<String, String>> getPlayers() {
return playerData;
}
public String getRawData() {
return rawData;
}
}
|