-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileUtil.java
More file actions
137 lines (126 loc) · 4.47 KB
/
Copy pathFileUtil.java
File metadata and controls
137 lines (126 loc) · 4.47 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import javax.swing.*;
import java.io.*;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
public class FileUtil {
static String filePath = "./scores.txt";
public static void createFile() {
try {
File file = new File(filePath);
if (file.createNewFile()) {
System.out.println("Score file created: " + file.getName());
} else {
System.out.println("Score file already exists.");
}
} catch (IOException ex) {
System.out.println("An error occured while creating the file: " + ex.getMessage());
}
}
public static String readUsernameAndScore(String filePath) {
BufferedReader reader = null;
int offset = 0;
int length = 45;
List<UsernameAndScore> userScores = new ArrayList<>();
try {
char[] buffer = new char[length];
reader = new BufferedReader(new FileReader(filePath));
while ((reader.read(buffer, 0, length)) > 0) {
String line = new String(buffer, 0, length);
String username = line.substring(0, 20).trim();
int score = Integer.parseInt(line.substring(40, 45).trim());
userScores.add(new UsernameAndScore(username, score));
offset += length;
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (reader != null)
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
Collections.sort(userScores, Comparator.comparingInt(UsernameAndScore::getScore).reversed());
StringBuilder stringBuilder = new StringBuilder();
for (UsernameAndScore userScore : userScores) {
stringBuilder.append(userScore.getUsername())
.append(" ")
.append(userScore.getScore())
.append("\n");
}
return stringBuilder.toString();
}
public static String addOrUpdate(String username, String password, String score) {
BufferedReader reader = null;
int offset = 0;
int length = 45;
try {
char[] buffer = new char[length];
reader = new BufferedReader(new FileReader(filePath));
while ((reader.read(buffer, 0, length)) > 0) {
String line = new String(buffer, 0, length);
if (line.substring(0, 20).equals(username)) {
return "Username already exists.";
}
offset += length;
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (reader != null)
reader.close();
} catch (IOException e) {
}
}
RandomAccessFile writer = null;
try {
writer = new RandomAccessFile(filePath, "rw");
String data = username + password + score;
writer.seek(offset);
writer.writeBytes(data);
} catch (IOException ex) {
ex.printStackTrace();
} finally {
try {
if (writer != null)
writer.close();
} catch (Exception ex) {
System.out.println(ex);
}
}
return null;
}
public static void updateScore(String activeUser, String score) {
RandomAccessFile file = null;
try {
file = new RandomAccessFile(filePath, "rw");
int offset = 0, length = 45;
byte[] buffer = new byte[length];
while(file.read(buffer, 0, length) > 0) {
String line = new String(buffer);
if(line.substring(0,20).equals(StringUtil.padRight(activeUser, 20, ' '))){
file.seek(offset + 40);
file.writeBytes(score);
break;
}
offset += length;
}
} catch (FileNotFoundException ex) {
throw new RuntimeException(ex);
} catch (IOException ex) {
throw new RuntimeException(ex);
} finally {
if(file != null) {
try {
file.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}