-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileHandler.java
More file actions
253 lines (125 loc) · 6.42 KB
/
Copy pathFileHandler.java
File metadata and controls
253 lines (125 loc) · 6.42 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
import java.util.ArrayList;
import java.io.*;
import java.io.BufferedReader;
public class FileHandler {
private static final String bookFileName = "book.txt";
private static final String customerFileName = "customer.txt";
//read the books from file
public static ArrayList<Book> readBook(){
ArrayList<Book> bookList = new ArrayList<>();
BufferedReader bookReader = null;
try{
bookReader = new BufferedReader(new FileReader(bookFileName));
String row = bookReader.readLine();
//if the line is not null it will read the book name and price
while(row != null){
String[] bookParts = row.split(" ");
if(bookParts.length == 2){
String bookName = bookParts[0].trim();
//converts the string bookPrice to a double
double bookPrice = Double.parseDouble(bookParts[1].trim());
bookList.add(new Book(bookName, bookPrice));
}
//read te next line
row = bookReader.readLine();
}
}catch(IOException e){
e.printStackTrace();
//close the book reader if it is not null at the end
}finally{
if(bookReader != null){
try{
bookReader.close();
}catch(IOException e){
e.printStackTrace();
}
}
}
return bookList;
}
//write the book after it has been read
public static void writeBook(ArrayList<Book> bookList){
BufferedWriter bookWriter = null;
try{
bookWriter = new BufferedWriter(new FileWriter(bookFileName));
for(Book book : bookList){
bookWriter.write(book.getName() + " " + book.getPrice());
bookWriter.newLine();
}
}catch(IOException e){
e.printStackTrace();
}finally{
if(bookWriter != null){
try{
bookWriter.close();
}catch(IOException e){
e.printStackTrace();
}
}
}
}
//read the customers so that they can be added or deleted in the system
public static ArrayList<Customer> readCustomer(){
ArrayList<Customer> customerList = new ArrayList<>();
BufferedReader customerReader = null;
//if the line is not null we will read the customers.
try{
customerReader = new BufferedReader(new FileReader(customerFileName));
String row = customerReader.readLine();
while(row != null){
//create an array called customerParts where we can seperate caracteristics about the customer
String[] customerParts = row.split(" ");
if(customerParts.length == 3){
//first part of string
String customerName = customerParts[0].trim();
//second part of string
String customerPassword = customerParts[1].trim();
//everytime we read a new customer, it will be created
Customer customer = new Customer(customerName, customerPassword);
//converts the string customerPoints to an integer
int customerPoints = Integer.parseInt(customerParts[2].trim());
customer.setPoints(customerPoints);
customer.updateStatus();
//add customer to list
customerList.add(customer);
}
//read the next line
row = customerReader.readLine();
}
}catch(IOException e){
e.printStackTrace();
//close the customer reader if it is not null
}finally{
if(customerReader != null){
try{
customerReader.close();
}catch(IOException e){
e.printStackTrace();
}
}
}
return customerList;
}
public static void writeCustomer(ArrayList<Customer> customerList){
BufferedWriter customerWriter = null;
try{
customerWriter = new BufferedWriter(new FileWriter(customerFileName));
for(Customer customer : customerList){
//gets username and password from the user class
customerWriter.write(customer.getUsername() + " " + customer.getPassword() + " " + customer.getPoints());
customerWriter.newLine();
}
}catch(IOException e){
e.printStackTrace();
//close the customerwriter
}finally{
if(customerWriter != null){
try{
customerWriter.close();
}catch(IOException e){
e.printStackTrace();
}
}
}
}
}