-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostal_system.java
1173 lines (871 loc) · 34.3 KB
/
postal_system.java
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
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import java.util.*;
import java.awt.*;
import java.util.Scanner;
import java.util.Random;
import javax.swing.*;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.FileWriter;
import java.text.*;
import java.time.LocalDate;
import java.util.Date;
import java.io.*;
public class postal_system
{
public postal_system()
{
}
private static final long MILLIS_IN_A_DAY = 1000 * 60 * 60 * 24;
//public static void main (String[] args)
public static void main(String[] args) throws FileNotFoundException
{
try{
Thread.sleep(500);//Time in milliseconds->5000==5 seconds
System.out.print("\n\n\n\t\t\t\t\t---|| W ");//Appears after 5 seconds
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print(" E ");
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print(" L ");
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print(" C ");
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print(" O ");
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print(" M ");
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print(" E ");
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print("\tT ");
Thread.sleep(300);//Time in milliseconds->5000==5 seconds
System.out.print(" O ");
Thread.sleep(300);//Time in milliseconds->5000==5 seconds
System.out.print(" \tE ");
Thread.sleep(400);//Time in milliseconds->5000==5 seconds
System.out.print(" N ");
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print(" T ");
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print(" R ");
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print(" E ");
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print(" G ");
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print(" A ");
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print(" \tS ");
Thread.sleep(200);//Time in milliseconds->5000==5 seconds
System.out.print(" E ");
Thread.sleep(300);//Time in milliseconds->5000==5 seconds
System.out.print(" R ");
Thread.sleep(300);//Time in milliseconds->5000==5 seconds
System.out.print(" V ");
Thread.sleep(300);//Time in milliseconds->5000==5 seconds
System.out.print(" I ");
Thread.sleep(300);//Time in milliseconds->5000==5 seconds
System.out.print(" C ");
Thread.sleep(300);//Time in milliseconds->5000==5 seconds
System.out.print(" E ");
Thread.sleep(300);//Time in milliseconds->5000==5 seconds
System.out.print(" S ||---\n\n");
/*System.out.print(" \n\n\t\t\t\t\t\t\t\tAGREEMENT TO TERMS \n\n\t\t\tThese Terms of Use constitute a legally binding agreement made between you whether personaly or on \n\t\t\tbehalf of an entity `you` and_________( `Company` `we` `us` or `our`) concerning your access to and \n\t\t\tuse of the________website as well as any other media form, media channel, mobile website or mobile \n\t\t\tapplication related, linked, or otherwise connected there to (collectively, the `Site`). You agree \n\t\t\tthat by accessing the Site, you have read, understood, and agreed to be bound by all of these Terms \n\t\t\tof Use. IF YOU DO NOT AGREE WITH ALL OF THESE TERMS OF USE, THEN YOU ARE EXPRESSLY PROHIBITED FROM \n\t\t\t\t\tUSING THE SITE AND YOU MUST DISCONTINUE USE IMMEDIATELY.");*/
}
catch(InterruptedException e)
{
System.err.println(e.getMessage());
}
Registration re = new Registration ();
try {
File obj = new File("Registration.txt");
if (obj.createNewFile())
{
System.out.println("File is created");
}
}
catch (IOException e)
{
System.out.println("An error occurred.");
e.printStackTrace();
}
int choice;
Scanner in=new Scanner(System.in);
System.out.println("\n\n|----- 1. Registration ");
System.out.println("\n|----- 2. Login ");
System.out.print("\n\nEnter your Choice : ");
choice=in.nextInt();
in.nextLine();
if(choice==1)
{
Registration user = new Registration();
user.register();
}
else if(choice==2)
{
Registration user = new Registration();
user.login();
}
else
{
System.out.println("Choose Proper Option");
}
// in.close();
//Scanner in = new Scanner(System.in);
Package pf = new Package ();
Owner of = new Owner ();
InsuredPackage ip = new InsuredPackage ();
int userChoice;
boolean quit = false;
CensusApp CensusApp = new CensusApp();
System.out.println ("\n\n\n*************************** SUCCESFULLY ADDED *****************************"
+ "\n\nUser ID and Package No. - "+"\n\t\t\t Unique User ID : " + of.getOwnerID()
+ "\n\t\t\t Package number : " + pf.getPackageID() + " belongs to you.");
do {
System.out.println("\n\n\n\n*************************** SELECT YOUR CHOICE *****************************\n");
System.out.println("1 -----> Air Transport");
System.out.println("2 -----> Road Transport");
System.out.println("3 -----> Cargo Transport");
System.out.println("\n0 <--> EXIT - To place ordered");
System.out.print("\n\nYour choice is : ");
userChoice = in.nextInt();
switch (userChoice) {
case 1:
System.out.println ("\nYou have choosen to Ship by ----> AIR WAY \n");
System.out.println ("\n\n\n---------------------------|| AIR WAY ||----------------------------------\n");
System.out.print ("\nPlease enter the package weight-kg : ");
double weight = in.nextDouble();
pf.weight = weight;
System.out.println("\n\n$ Cost - ");
System.out.println("\tYour Shipment Will cost : Rs." + pf.getAir());
ip.setCost(pf.getCost()); // repair
System.out.println("\tInsurance will cost : Rs." + ip.getRange());
System.out.println("\n\n\nTip - If you want to check prices of other ways.\n Please check it, before placing order.");
break;
case 2:
System.out.println ("\nYou have choosen to Ship by ----> TRUCK WAY");
System.out.println ("\n\n\n---------------------------|| TRUCK WAY ||----------------------------------\n");
System.out.print("\nPlease enter the package weight-kg : ");
pf.weight = in.nextDouble();
System.out.println("\n\n$ Cost - ");
System.out.println("\tYour Shipment Will cost : Rs." + pf.getTruck());
ip.setCost(pf.getCost()); // repair
System.out.println("\tInsurance will cost : Rs." + ip.getRange());
System.out.println("\n\n\nTip - If you want to check prices of other ways.\n Please check it, before placing order.");
break;
case 3:
System.out.println ("\nYou have choosen to Ship by ----> CARGO WAY ");
System.out.println ("\n\n\n---------------------------|| CARGO WAY ||----------------------------------\n");
System.out.print("\nPlease enter the package weight-kg : ");
pf.weight = in.nextDouble();
System.out.println("\n\n$ Cost - ");
System.out.println("\tYour Shipment Will cost : Rs." + pf.getMail());
ip.setCost(pf.getCost());
System.out.println("\tInsurance will cost : Rs." + ip.getRange());
System.out.println("\n\n\nTip - If you want to check prices of other ways.\n Please check it, before placing order.");
break;
case 0:
quit = true;
UserID UserID = new UserID();
System.out.println("\n\n\t\t\t\tDONE - Thank you !!\n");
System.out.println("\n\n\n--------------------------------$ Please Pay $--------------------------------\n");
System.out.println("---1. Debit ");
System.out.println("---2. Credit ");
System.out.println("---3. Google Pay. ");
System.out.println("---4. PayPal. ");
System.out.println("---5. Bhim. ");
System.out.println("---6. Cash On delivery. ");
System.out.print("\nEnter your Choice : ");
choice=in.nextInt();
in.nextLine();
if(choice==1)
{
pay_debit pay_debit = new pay_debit();
}
else if(choice==2)
{
pay_credit pay_credit = new pay_credit();
}
else if(choice==3)
{
google_pay google_pay = new google_pay();
}
else if(choice==4)
{
PayPal PayPal = new PayPal();
}
else if(choice==5)
{
Bhim Bhim= new Bhim();
}
else if(choice==6)
{
cash cash = new cash();
}
else
{
System.out.println("Choose Proper Option");
}
break;
default:
System.out.println("\n\tOOPS.....Wrong choice.");
break;
}
System.out.println();
} while (!quit);
SimpleDateFormat formatDate = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss z");
Date date = new Date();
System.out.println("\n********************************** Succesfully Placed !! ***************************************\n\n");
formatDate.setTimeZone(TimeZone.getTimeZone("IST"));
System.out.println("\t\t\tOrdered Confirmed - " +formatDate.format(date));
System.out.println("\n\nDelivery Status---------->\n");
Date today = new Date();
System.out.println("\n------------------------------------------------------------");
System.out.println("\n| Ordered Time & Date :: " + today + " |");
System.out.println("\n| Dilivery Time & Date :: " + postal_system(today)+ " |");
LocalDate todayDate = LocalDate.now();
System.out.println("\n| Dispatched :: " + todayDate + " |");
System.out.println("\n| Arriving :: " + postal_system(todayDate)+ " |");
System.out.println("\n------------------------------------------------------------");
System.out.println("\n\n\n\tThank you for placing Order !");
System.out.println("\t<Entrega Transport Services>");
try{
Thread.sleep(2000);//Time in milliseconds->5000==5 seconds
System.out.print("\n\n\n------------------------------>>>>>>>>>>> ON THE WAY <<<<<<<<<<<<-------------------------------\n\n");
}
catch(InterruptedException e)
{
System.err.println(e.getMessage());
}
}
public static Date postal_system(Date date)
{
return new Date(date.getTime() + MILLIS_IN_A_DAY);
}
public static LocalDate postal_system(LocalDate localdate)
{
return localdate.plusDays(5);
}
}
//public
class CensusApp
{
BufferedWriter out;
public CensusApp()
{
try
{
// out = new BufferedWriter(new FileWriter("TESTING.txt"/*,true*/));
BufferedWriter out = new BufferedWriter(new FileWriter("userInput.txt", true));
String userInput = ("");
//needed for user to input selection
Scanner input = new Scanner(System.in);
System.out.println("\t\t\n\nSender's Information ---> ");
//Request the City Name
out.append("Sender- ");
System.out.print("\nEnter Companys's Name : " );
userInput = input.nextLine();
out.write(userInput);
out.append(" ");
//Request the magner/owener Name
System.out.print ("Enter Manager/Owner Name : " );
userInput = input.nextLine();
out.write(userInput);
out.append(" ");
//Request the phone
System.out.print("Enter your phone number : ");
userInput = input.nextLine();
out.write(userInput);
out.append(" ");
//Request the City Name
System.out.print ("Enter your City Name : ");
userInput = input.nextLine();
out.write(userInput);
out.append(" ");
//Request the pincode
System.out.print ("Enter your pin-code number : ");
userInput = input.nextLine();
out.write(userInput);
out.append(" ");
//Request the State Name
System.out.print("Enter your State name : " );
userInput = input.nextLine();
out.write(userInput);
out.append(" ");
out.append(" Reciver- ");
System.out.println("\t\t\n\nReciver's Information ---> ");
//Request the City Name
System.out.print("\nEnter Companys's Name : " );
userInput = input.nextLine();
out.write(userInput);
out.append(" ");
//Request the magner/owener Name
System.out.print ("Enter Manager/Owner Name : " );
userInput = input.nextLine();
out.write(userInput);
out.append(" ");
//Request the phone
System.out.print("Enter your phone number : ");
userInput = input.nextLine();
out.write(userInput);
out.append(" ");
//Request the City Name
System.out.print ("Enter your City Name : ");
userInput = input.nextLine();
out.write(userInput);
out.append(" ");
//Request the City Name
System.out.print ("Enter your pin-code number : ");
userInput = input.nextLine();
out.write(userInput);
out.append(" ");
//Request the State Name
System.out.print("Enter your state name : " );
userInput = input.nextLine();
out.write(userInput);
out.append(" ");
out.write(userInput);//Write out the specfied string to the file
out.newLine(); //write a new line to the file on the next line
out.close();//flushes and closes the stream
}
catch(IOException e)
{
System.out.println("There was a problem:" + e);
}
}
}
class UserID
{
BufferedWriter out;
public UserID()
{
try
{
// out = new BufferedWriter(new FileWriter("TESTING.txt"/*,true*/));
BufferedWriter out = new BufferedWriter(new FileWriter("payment.txt", true));
String userInput = ("");
//needed for user to input selection
Scanner input = new Scanner(System.in);
System.out.println("\t\t\n\n\n******************************* Confirmation ******************************** ");
out.append(" Way- ");
System.out.print("\n\n\nEnter Your Way (AIR/ROAD/CARGO) : " );
userInput = input.nextLine();
out.write(userInput);
out.append(" User ID- ");
System.out.print("Enter Your Unique User ID : " );
userInput = input.nextLine();
out.write(userInput);
//Request the City Name
out.append(" Package No- ");
System.out.print("Enter Your Package Number ID : " );
userInput = input.nextLine();
out.write(userInput);
//out.newLine(); //write a new line to the file on the next line
out.close();//flushes and closes the stream
}
catch(IOException e)
{
System.out.println("There was a problem:" + e);
}
}
}
class Registration {
public void register() throws FileNotFoundException
{
Scanner in=new Scanner(System.in);
System.out.print("\nEnter User Name : ");
String Uname=in.nextLine();
System.out.println("Check - " + Uname);
System.out.print("\nEnter Password : ");
String Pass=in.nextLine();
System.out.println("Check - " + Pass);
System.out.println("\nConfirm Password : ");
String ConPass=in.nextLine();
System.out.println(ConPass);
Uname=Uname.trim();
Pass=Pass.trim();
ConPass=ConPass.trim();
String x= Uname+" "+Pass;
if(Pass.equals(ConPass))
{
File f = new File("Registration.txt");
Scanner content = new Scanner(f);
int flag=0;
while (content.hasNextLine()) {
String data = content.nextLine();
if(data.equals(x))
{
System.out.println("\n\n*************************** Already Registered ***************************\n");
flag=1;
System.out.print("\n\n|----- 1. Registration. ");
System.out.print("\n|----- 2. Login. \n");
System.out.println("\n\nEnter your Choice");
int choice=in.nextInt();
if(choice==1)
{
this.register();
}
else if(choice==2)
{
this.login();
}
else
{
System.out.println("\n\n*************************** Choose Proper Option ***************************");
}
break;
}
//content.close();
}
if(flag==0)
{
try {
BufferedWriter out = new BufferedWriter(new FileWriter("Registration.txt", true));
out.write(Uname+" "+Pass+"\n");
out.close();
}
catch (IOException e) {
System.out.println("exception occoured" + e);
}
System.out.println("\n\n*************************** Successfully Registered ***************************");
System.out.println("\n\n*************************** Please Login ***************************\n");
this.login();
}
}
else
{
System.out.println("------------Recheck-----------------");
System.out.println("1. Registration. ");
System.out.println("2. Login. ");
System.out.println("Enter your Choice");
int choice=in.nextInt();
if(choice==1)
{
this.register();
}
else if(choice==2)
{
this.login();
}
else
{
System.out.println("Choose Proper Option");
}
}
//in.close();
}
public void login()
{
Scanner in=new Scanner(System.in);
System.out.print("\n\nEnter User Name : ");
String Uname=in.nextLine();
//System.out.println(Uname);
System.out.print("Enter Password : ");
String Pass=in.nextLine();
// System.out.println(Pass);
Uname=Uname.trim();
Pass=Pass.trim();
String x= Uname+" "+Pass;
try {
File f = new File("Registration.txt");
Scanner content = new Scanner(f);
int flag=0;
while (content.hasNextLine()) {
String data = content.nextLine();
if(data.equals(x))
{
System.out.println("\n\n************************** Login Successful ***************************");
System.out.println("\n\n*************************** Welcome to the Application ***************************");
flag=1;
break;
}
}
if(flag==0)
{
System.out.println("\n\n*************************** Login Failed ***************************");
System.out.println("\n|---- 1. Registration. ");
System.out.println("|---- 2. Login. ");
System.out.println("\n\nEnter your Choice");
int choice=in.nextInt();
if(choice==1)
{
this.register();
}
else if(choice==2)
{
this.login();
}
else
{
System.out.println("Choose Proper Option");
}
}
// content.close();
}
catch (FileNotFoundException e) {
System.out.println("Error.");
e.printStackTrace();
}
//in.close();
}
}
//public
class Package
{
private double pnumber;
public double weight;
private double Air;
private double Truck;
private double Mail;
private double cost;
public Package (double cost, double pnumber, double weight, double Air, double Truck, double Mail){
this.cost = cost;
this.pnumber = pnumber;
this.weight = weight;
this.Air = Air;
this.Truck = Truck;
this.Mail = Mail;
}
/**
*
*/
public Package(){
}
public void setPackageID (double pnumber){
this.pnumber = pnumber;
}
public double getPackageID (){
Random rand = new Random();
int pick = rand.nextInt(40)+1;
return pick;
}
public void setAir (double Air){
this.Air = Air;
}
public double getAir ()
{
if (weight <= 1)
{
System.out.println("Please enter the correct amount of weight.");
}
else // repair
{
if (weight <= 8)
{
cost = weight * 2;
}
else if ((weight >= 9) && (weight <= 16))
{
cost = weight * 3;
}
else if (weight >= 17)
{
cost = weight * 4.50;
}
}
return cost;
}
public void setTruck (double Truck){
this.Truck = Truck;
}
public double getTruck (){
if (weight <= 8)
{
//System.out.println("The Shipment of package will cost Rs." + weight * 1.50);
cost = weight *1.50;
}
else
{
if ((weight >= 9) && (weight <= 16))
{
//System.out.println("The Shipment of package will cost Rs." + weight * 2.35);
cost = weight *2.35;
}
else {
if (weight >= 17) {
//System.out.println("The Shipment of package will cost Rs." + weight * 3.25);
cost = weight *3.25;
}
}
}
return getCost();
}
public void setMail (double Mail){
this.Mail = Mail;
}
public double getMail (){
if (weight <= 8) {
//System.out.println("The Shipment of package will cost Rs." + weight * 2.50);
cost = weight *2.50;
}
else {
if ((weight >= 9) && (weight <= 16)) {
//System.out.println("The Shipment of package will cost Rs." + weight * 3.50);
cost = weight *3.50;
}
else {
if (weight >= 17) {
//System.out.println("The Shipment of package will cost Rs." + weight * 4.15);
cost = weight *4.15;
}
}
}
return getCost();
}
/**
* @return the cost
*/
public double getCost() {
return cost;
}
/**
* @param cost the cost to set
*/
public void setCost(double cost) {
this.cost = cost;
}
}
//public
class InsuredPackage extends Package
{
private double range;
public InsuredPackage (double cost, double pnumber, double weight, double Air, double Truck, double Mail){
super (cost, pnumber, weight, Air, Truck, Mail);
}
public InsuredPackage (){
super ();
}
public void setRange (double range){
this.range = range;
}
public double getRange() // repair
{
if (getCost() >= 10 && getCost() <= 100) // you should write like this
{
return getCost() + 15;
}
if (getCost() >= 100.01 && getCost() <= 300)
{
return getCost() + 25.50;
}
if (getCost() >= 300.01)
{
return getCost() + 34;
}
return range;
}
}
class pay_debit
{
BufferedWriter out;
public pay_debit()
{
try
{
BufferedWriter out = new BufferedWriter(new FileWriter("payment.txt", true));
String userInput = ("");
Scanner input = new Scanner(System.in);
System.out.println("\t\t\n\n\n\n**------------------Debit card------------------**");
out.append(" Debit Card : account number - ");
System.out.print("\n\nEnter last 6 digits : ********" );
userInput = input.nextLine();
out.write(userInput);
//Request the City Name
out.append(" expiry date- ");
System.out.print("Enter expiry date : " );
userInput = input.nextLine();
out.write(userInput);
out.append(" Cost - ");
System.out.print("\n\nPay (Including Insurance) ---> Rs." );
userInput = input.nextLine();
out.write(userInput);
System.out.print("\n\nTranscation Status -----> $ SUCCESFULLY PAID \n\n\n" );
out.newLine(); //write a new line to the file on the next line
out.close();//flushes and closes the stream
}
catch(IOException e)
{
System.out.println("There was a problem:" + e);
}
}
}
class pay_credit
{
BufferedWriter out;
public pay_credit()
{
try
{
BufferedWriter out = new BufferedWriter(new FileWriter("payment.txt", true));
String userInput = ("");
Scanner input = new Scanner(System.in);
System.out.println("\t\t\n\n\n\n**------------------Credit card------------------**");
out.append(" Credit Card: account number - ");
System.out.print("\n\nEnter last 6 digits : ********" );
userInput = input.nextLine();
out.write(userInput);
//Request the City Name
out.append(" expiry date- ");
System.out.print("Enter expiry date : " );
userInput = input.nextLine();
out.write(userInput);
out.append(" Cost - ");
System.out.print("\n\nPay (Including Insurance) ---> Rs." );
userInput = input.nextLine();
out.write(userInput);
System.out.print("\n\nTranscation Status -----> $ SUCCESFULLY PAID \n\n\n" );
out.newLine(); //write a new line to the file on the next line
out.close();//flushes and closes the stream
}
catch(IOException e)
{
System.out.println("There was a problem:" + e);
}
}
}
class google_pay
{
BufferedWriter out;
public google_pay()
{
try
{
BufferedWriter out = new BufferedWriter(new FileWriter("payment.txt", true));
String userInput = ("");
Scanner input = new Scanner(System.in);
System.out.println("\t\t\n\n\n\n**------------------Google_pay------------------**");
out.append(" Google_pay : Phone number - ");
System.out.print("\nEnter phone number : " );
userInput = input.nextLine();
out.write(userInput);
//Request the City Name
out.append(" Bank - ");
System.out.print("Name of bank : " );
userInput = input.nextLine();
out.write(userInput);
out.append(" Cost - ");
System.out.print("\n\nPay (Including Insurance) ---> Rs." );
userInput = input.nextLine();
out.write(userInput);
System.out.print("\n\nTranscation Status -----> $ SUCCESFULLY PAID \n\n\n" );
out.newLine(); //write a new line to the file on the next line
out.close();//flushes and closes the stream
}
catch(IOException e)
{
System.out.println("There was a problem:" + e);
}