-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBankAccountMain.java
More file actions
559 lines (534 loc) · 19.6 KB
/
BankAccountMain.java
File metadata and controls
559 lines (534 loc) · 19.6 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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
/**
* @author Shreeniket Bendre
* Project: BankAccount
* Class: BankAccountMain.java
* Notes: Please ignore commented code. It is for the extra credit portion of the project.
*/
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Scanner;
public class BankAccountMain {
private static ArrayList<BankAccount> accounts = new ArrayList<BankAccount>();
private final static double OVER_DRAFT_FEE = 15;
private final static double RATE = .0025;
private final static double TRANSACTION_FEE = 1.5;
private final static double MIN_BAL = 300;
private final static double MIN_BAL_FEE = 10;
private final static int FREE_TRANSACTIONS = 10;
public static void main(String[] args) {
Scanner scan = new Scanner (System.in);
boolean terminate = false;
// boolean fileHasContents = false;
// File file = null;
// Scanner read = null;
// try {
// file = new File("accounts.txt");
// if (file.createNewFile());
// read = new Scanner (file);
// } catch (IOException e) {
// System.out.println("An error occurred.");
// }
//
// if (file.length() > 0) {
// fileHasContents = true;
// }
// if (fileHasContents) {
// int numberOfAccounts = Integer.parseInt(read.nextLine());
// for (int i = 0; i<numberOfAccounts; i++) {
// String accInfoString = read.nextLine();
// String[] accInfo = accInfoString.split(",");
// if(accInfo[0].equals("C")) {
// double b = Double.parseDouble(accInfo[1]);
// String name = accInfo[2];
// double odf = Double.parseDouble(accInfo[3]);
// double tf = Double.parseDouble(accInfo[4]);
// int freeTrans = Integer.parseInt(accInfo[5]);
// int numTransactions = Integer.parseInt(accInfo[6]);
// CheckingAccount account = new CheckingAccount(name,b,odf,tf,freeTrans);
// account.setNumTransactions(numTransactions);
// accounts.add(account);
// }
// else {
// double b = Double.parseDouble(accInfo[1]);
// String name = accInfo[2];
// double rate = Double.parseDouble(accInfo[3]);
// double mb = Double.parseDouble(accInfo[4]);
// double mbf = Double.parseDouble(accInfo[5]);
// int numTransfers = Integer.parseInt(accInfo[6]);
// SavingsAccount account = new SavingsAccount(name,b,rate,mb,mbf);
// account.setNumTransfers(numTransfers);
// accounts.add(account);
// }
// }
// }
while(!terminate) {
System.out.println("Would you like to (A)dd an account, (M)ake a transaction, or (T)erminate the program? ");
boolean validInput = false;
String input = "";
while (!validInput) {
input = scan.nextLine();
boolean valid = true;
if (input.length() != 1) valid = false;
else if (!(input.equals("A") || input.equals("M") || input.equals("T"))) valid = false;
if (valid) {
validInput = true;
}
else {
System.out.println("Invalid input. Please re-enter. Would you like to (A)dd an account, (M)ake a transaction, or (T)erminate the program?");
input = "";
}
}
if (input.equals("T")) {
// String accInfo = accounts.size()+"\n";
// for(int i = 0; i<accounts.size(); i++) {
// BankAccount account = accounts.get(i);
// double accBalance = account.getBalance();
// String accName = account.getName();
// String type = "";
// double odfOrRate = 0;
// double tfOrMb = 0;
// int nums = 0;
// int freeTrans = 0;
// double mbf = 0;
// if (account instanceof CheckingAccount) {
// type = "C";
// odfOrRate = ((CheckingAccount)account).getODF();
// tfOrMb = ((CheckingAccount)account).getTF();
// freeTrans = ((CheckingAccount)account).getFreeTrans();
// nums = ((CheckingAccount)account).getNumTransactions();
// accInfo += type+","+accBalance+","+accName+","+odfOrRate+","+tfOrMb+","+freeTrans+","+nums+"\n";
// }
// else {
// type = "S";
// odfOrRate = ((SavingsAccount)account).getRate();
// tfOrMb = ((SavingsAccount)account).getMB();
// mbf = ((SavingsAccount)account).getMBF();
// nums = ((SavingsAccount)account).getNumTransfers();
// accInfo += type+","+accBalance+","+accName+","+odfOrRate+","+tfOrMb+","+mbf+","+nums+"\n";
// }
// try {
// FileWriter myWriter = new FileWriter("accounts.txt");
// myWriter.write(accInfo);
// myWriter.close();
// }
// catch (IOException e) {
// System.out.println("An error occurred.");
// }
// }
//
System.out.println("Have a nice day.");
terminate = true;
}
else if (input.equals("A")) {
boolean validAcc = false;
String accType = "";
while (!validAcc) {
System.out.println("Would you like a (C)heckings or (S)avings Account?");
accType = scan.nextLine();
if (!(accType.equals("C")||accType.equals("S"))) {
System.out.println("Invalid Input. Please re-enter.");
}
else validAcc = true;
}
if (accType.equals("C")){
System.out.println("Account Name: ");
String name = scan.nextLine();
System.out.println("Account Balance: ");
while(!scan.hasNextDouble()) {
scan.nextLine();
System.out.println("Invalid. Re enter.");
}
double b = scan.nextDouble();
scan.nextLine();
CheckingAccount checkingAccount = new CheckingAccount(name, b, OVER_DRAFT_FEE, TRANSACTION_FEE, FREE_TRANSACTIONS);
accounts.add(checkingAccount);
}
else {
System.out.println("Account Name: ");
String name = scan.nextLine();
System.out.println("Account Balance: ");
while(!scan.hasNextDouble()) {
scan.nextLine();
System.out.println("Invalid. Re enter.");
}
double b = scan.nextDouble();
scan.nextLine();
SavingsAccount savingsAccount = new SavingsAccount(name, b, RATE, MIN_BAL, MIN_BAL_FEE);
accounts.add(savingsAccount);
}
}
else {
boolean validOption = false;
String userChoice = "";
while (!validOption) {
System.out.println("Would you like to (W)ithdraw, (D)eposit, (T)ransfer, or (G)et account numbers?");
userChoice = scan.nextLine();
switch (userChoice) {
case "W":
boolean validNum = false;
boolean foundName = true;
BankAccount accWithdraw = null;
while (!validNum) {
System.out.println("Please enter account number:");
while(!scan.hasNextInt()) {
scan.nextLine();
System.out.println("Account numbers must be integers. Try again, and if you have the incorrect account number, we can help you recover it.");
}
int accNum = scan.nextInt();
scan.nextLine();
if (getAccountByNumber (accNum) != null) {
accWithdraw = getAccountByNumber(accNum);
validNum = true;
}
else {
boolean validUserInput = false;
String incorrectAccNumChoice = "";
while (!validUserInput) {
System.out.println("Invalid. Would you like to (R)e-enter, or (S)earch by name?");
incorrectAccNumChoice = scan.nextLine();
if (!(incorrectAccNumChoice.equals("R")||incorrectAccNumChoice.equals("S"))) {
System.out.print("Not R or S. ");
}
else validUserInput = true;
}
if (incorrectAccNumChoice.equals("R")) {
validNum = false;
}
else {
System.out.println("Please enter your name:");
String name = scan.nextLine();
if (getAccountsByName(name)!=null) {
ArrayList<BankAccount> accountsByName = getAccountsByName(name);
for (int i = 0; i<accountsByName.size(); i++) {
if (accounts.get(i) instanceof CheckingAccount)
System.out.println("Checkings Account|Account Number:"+(accountsByName.get(i).toString()));
else
System.out.println("Savings Account |Account Number:"+(accountsByName.get(i).toString()));
}
System.out.println("Which account would you like (ENTER ACCOUNT NUMBER)");
while(!scan.hasNextInt()) {
scan.nextLine();
System.out.println("Invalid. Re enter.");
}
accNum = scan.nextInt();
while (getAccountByNumber(accNum)==null) {
System.out.println("Not a valid account number. Re enter.");
if (scan.hasNextInt())
accNum = scan.nextInt();
}
accWithdraw = getAccountByNumber(accNum);
validNum = true;
}
else {
System.out.println("\nNO ACCOUNTS UNDER THAT NAME\n");
validNum = true;
foundName = false;
validOption = true;
}
}
}
}
if (foundName) {
System.out.println("How much would you like to withdraw?");
while(!scan.hasNextDouble()) {
scan.nextLine();
System.out.println("How much would you like to withdraw?");
}
double amt = scan.nextDouble();
scan.nextLine();
try {
accWithdraw.withdraw(amt);
validOption = true;
}
catch(IllegalArgumentException e) {
System.out.println("Transaction Not Authorized.");
validOption = false;
}
}
break;
case "D":
validNum = false;
foundName = true;
BankAccount accDeposit = null;
while (!validNum) {
System.out.println("Please enter account number:");
while(!scan.hasNextInt()) {
scan.nextLine();
System.out.println("Account numbers must be integers. Try again, and if you have the incorrect account number, we can help you recover it.");
}
int accNum = scan.nextInt();
scan.nextLine();
if (getAccountByNumber (accNum) != null) {
accDeposit = getAccountByNumber(accNum);
validNum = true;
}
else {
boolean validUserInput = false;
String incorrectAccNumChoice = "";
while (!validUserInput) {
System.out.println("Invalid. Would you like to (R)e-enter, or (S)earch by name?");
incorrectAccNumChoice = scan.nextLine();
if (!(incorrectAccNumChoice.equals("R")||incorrectAccNumChoice.equals("S"))) {
System.out.print("Not R or S. ");
}
else validUserInput = true;
}
if (incorrectAccNumChoice.equals("R")) {
validNum = false;
}
else {
System.out.println("Please enter your name:");
String name = scan.nextLine();
if (getAccountsByName(name)!=null) {
ArrayList<BankAccount> accountsByName = getAccountsByName(name);
for (int i = 0; i<accountsByName.size(); i++) {
if (accounts.get(i) instanceof CheckingAccount)
System.out.println("Checkings Account|Account Number:"+(accountsByName.get(i).toString()));
else
System.out.println("Savings Account |Account Number:"+(accountsByName.get(i).toString()));
}
System.out.println("Which account would you like (ENTER ACCOUNT NUMBER)");
while(!scan.hasNextInt()) {
scan.nextLine();
System.out.println("Invalid. Re enter.");
}
accNum = scan.nextInt();
while (getAccountByNumber(accNum)==null) {
System.out.println("Not a valid account number. Re enter.");
if (scan.hasNextInt())
accNum = scan.nextInt();
}
accDeposit = getAccountByNumber(accNum);
validNum = true;
}
else {
System.out.println("\nNO ACCOUNTS UNDER THAT NAME\n");
validNum = true;
foundName = false;
validOption = true;
}
}
}
}
if (foundName) {
System.out.println("How much would you like to deposit?");
boolean firstRun = true;
while(!scan.hasNextDouble()) {
scan.nextLine();
System.out.println("How much would you like to deposit?");
}
double amt = scan.nextDouble();
scan.nextLine();
try {
accDeposit.deposit(amt);
validOption = true;
}
catch(IllegalArgumentException e) {
System.out.println("Transaction Not Authorized");
validOption = false;
}
}
break;
case "T":
validNum = false;
foundName = true;
BankAccount accOne = null;
BankAccount accTwo = null;
while (!validNum) {
System.out.println("Please enter account number to transfer money FROM:");
while(!scan.hasNextInt()) {
scan.nextLine();
System.out.println("Account numbers must be integers. Try again, and if you have the incorrect account number, we can help you recover it.");
}
int accNum = scan.nextInt();
scan.nextLine();
if (getAccountByNumber (accNum) != null) {
accOne = getAccountByNumber(accNum);
validNum = true;
}
else {
boolean validUserInput = false;
String incorrectAccNumChoice = "";
while (!validUserInput) {
System.out.println("Invalid. Would you like to (R)e-enter, or (S)earch by name?");
incorrectAccNumChoice = scan.nextLine();
if (!(incorrectAccNumChoice.equals("R")||incorrectAccNumChoice.equals("S"))) {
System.out.print("Not R or S. ");
}
else validUserInput = true;
}
if (incorrectAccNumChoice.equals("R")) {
validNum = false;
}
else {
System.out.println("Please enter your name:");
String name = scan.nextLine();
if (getAccountsByName(name)!=null) {
ArrayList<BankAccount> accountsByName = getAccountsByName(name);
for (int i = 0; i<accountsByName.size(); i++) {
if (accounts.get(i) instanceof CheckingAccount)
System.out.println("Checkings Account|Account Number:"+(accountsByName.get(i).toString()));
else
System.out.println("Savings Account |Account Number:"+(accountsByName.get(i).toString()));
}
System.out.println("Which account would you like (ENTER ACCOUNT NUMBER)");
while(!scan.hasNextInt()) {
scan.nextLine();
System.out.println("Invalid. Re enter.");
}
accNum = scan.nextInt();
while (getAccountByNumber(accNum)==null) {
System.out.println("Not a valid account number. Re enter.");
if (scan.hasNextInt())
accNum = scan.nextInt();
}
accOne = getAccountByNumber(accNum);
validNum = true;
}
else {
System.out.println("\nNO ACCOUNTS UNDER THAT NAME\n");
validNum = true;
foundName = false;
validOption = true;
}
}
}
}
if (foundName) {
validNum = false;
foundName = true;
while (!validNum) {
System.out.println("Please enter account number to transfer money TO:");
while(!scan.hasNextInt()) {
scan.nextLine();
System.out.println("Account numbers must be integers. Try again, and if you have the incorrect account number, we can help you recover it.");
}
int accNum = scan.nextInt();
scan.nextLine();
if (getAccountByNumber (accNum) != null) {
accTwo = getAccountByNumber(accNum);
validNum = true;
}
else {
boolean validUserInput = false;
String incorrectAccNumChoice = "";
while (!validUserInput) {
System.out.println("Invalid. Would you like to (R)e-enter, or (S)earch by name?");
incorrectAccNumChoice = scan.nextLine();
if (!(incorrectAccNumChoice.equals("R")||incorrectAccNumChoice.equals("S"))) {
System.out.print("Not R or S. ");
}
else validUserInput = true;
}
if (incorrectAccNumChoice.equals("R")) {
validNum = false;
}
else {
System.out.println("Please enter your name:");
String name = scan.nextLine();
if (getAccountsByName(name)!=null) {
ArrayList<BankAccount> accountsByName = getAccountsByName(name);
for (int i = 0; i<accountsByName.size(); i++) {
if (accounts.get(i) instanceof CheckingAccount)
System.out.println("Checkings Account|Account Number:"+(accountsByName.get(i).toString()));
else
System.out.println("Savings Account |Account Number:"+(accountsByName.get(i).toString()));
}
System.out.println("Which account would you like (ENTER ACCOUNT NUMBER)");
while(!scan.hasNextInt()) {
scan.nextLine();
System.out.println("Invalid. Re enter.");
}
accNum = scan.nextInt();
while (getAccountByNumber(accNum)==null) {
System.out.println("Not a valid account number. Re enter.");
if (scan.hasNextInt())
accNum = scan.nextInt();
}
accTwo = getAccountByNumber(accNum);
validNum = true;
}
else {
System.out.println("\nNO ACCOUNTS UNDER THAT NAME\n");
validNum = true;
foundName = false;
validOption = true;
}
}
}
}
}
if (foundName) {
System.out.println("How much would you like to transfer?");
while(!scan.hasNextDouble()) {
scan.nextLine();
System.out.println("How much would you like to transfer?");
}
double amt = scan.nextDouble();
scan.nextLine();
try {
accOne.transfer(accTwo, amt);
validOption = true;
}
catch(IllegalArgumentException e) {
System.out.println("Transaction Not Authorized");
validOption = false;
}
}
break;
case "G":
boolean validName = false;
while (!validName) {
System.out.println("Please enter your name:");
String name = scan.nextLine();
if (getAccountsByName(name)!=null) {
ArrayList<BankAccount> accountsByName = getAccountsByName(name);
for (int i = 0; i<accountsByName.size(); i++) {
if (accounts.get(i) instanceof CheckingAccount)
System.out.println("Checkings Account|Account Number:"+(accountsByName.get(i).toString()));
else
System.out.println("Savings Account |Account Number:"+(accountsByName.get(i).toString()));
}
System.out.println("These are all accounts associated with your name.\n");
validName = true;
}
else {
System.out.println("No accounts under that name.");
validName = true;
}
}
validOption = true;
break;
default:
System.out.println("Not a valid input.");
validOption = false;
}
}
}
}
}
private static BankAccount getAccountByNumber (int number) {
for (int i = 0; i<accounts.size(); i++) {
if (accounts.get(i).getAccountNum() == number) {
return accounts.get(i);
}
}
return null;
}
private static ArrayList<BankAccount> getAccountsByName (String name){
ArrayList<BankAccount> accountList = new ArrayList<BankAccount>();
boolean isAccountFound = false;
for (int i = 0; i<accounts.size(); i++) {
if (accounts.get(i).getName().equals(name)) {
accountList.add(accounts.get(i));
isAccountFound = true;
}
}
if (isAccountFound) {
return accountList;
}
return null;
}
}