-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main_Class.java
597 lines (491 loc) · 15.9 KB
/
Main_Class.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
package project_pkg;
import java.io.FileWriter;
import java.util.*;
import Crud.MenuList;
public class Main_Class {
private static ArrayList<Category> categories = new ArrayList<>();
public static void main(String[] args) {
System.out.println("***************************************************************************************");
System.out.println("");
System.out.println(" Welcome to Online Shopping Project by Pragati");
System.out.println("");
System.out.println("***************************************************************************************");
System.out.println("");
//Creating and Adding items to first category
Category category_1 = new Category("Cloths","Amazon");
category_1.addItem("Red-Jacket","Columbia",1200.00);
category_1.addItem("Denim","Levis",1500.00);
category_1.addItem("T-shirt","US Polo",800.00);
category_1.addItem("Saree","Hastkala",1150.00);
category_1.addItem("Dress","Kriya",2500.00);
category_1.addItem("Pants","FabIndia",3000.00);
category_1.addItem("Kurti","Orly",1600.00);
category_1.addItem("Scarf","Aurelia",499.99);
category_1.addItem("Silk-Saree","Lila Sarees",5000.00);
categories.add(category_1);
//Creating and Adding items to second category
Category category_2 = new Category("Shoes","Flipkart");
category_2.addItem("Running-Shoes","Nike",1999.99);
category_2.addItem("Leather-Shoes","Hush Puppies",1500.00);
category_2.addItem("Casual-Walking-Shoes","Skechers",2800.00);
category_2.addItem("Boots","Bata",1200.00);
category_2.addItem("Loafers","Reebok",2300.00);
category_2.addItem("Sandals","Puma",999.99);
category_2.addItem("Ballet-Flats","Fila",1700.00);
category_2.addItem("Flip-Flops","Adidas",1150.00);
category_2.addItem("High-Heels","Happy Heels",1299.00);
category_2.addItem("Sneakers","New Balance",3000.00);
categories.add(category_2);
//Creating and Adding items to second category
Category category_3 = new Category("Handbags","Myntra");
category_3.addItem("Sling-Bag","Lavie",999.99);
category_3.addItem("Tote-Bag","Baggit",1499.99);
category_3.addItem("Handbag1","ABC",1900.00);
categories.add(category_3);
try
{
Thread.sleep(1000);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("");
System.out.println("------------------------------List of All Categories and Seller----------------------");
try
{
Thread.sleep(1000);
}
catch(Exception e)
{
System.out.println(e);
}
java.util.Iterator itr = categories.iterator();
System.out.println("");
int count = 1;
while (itr.hasNext())
{
Category c = (Category) itr.next();
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println(count+". "+c.cat_type + ":" + c.seller);
count++;
}
System.out.println("");
LinkedList<Item> cart_1 = new LinkedList<>();
categories.get(0).addToCart("Red-Jacket",cart_1);
categories.get(0).addToCart("Saree",cart_1);
categories.get(0).addToCart("Scarf",cart_1);
categories.get(1).addToCart("Boots",cart_1);
categories.get(1).addToCart("Running-Shoes",cart_1);
categories.get(1).addToCart("Sandals",cart_1);
System.out.println(" ");
System.out.println("======================================================================================");
System.out.println(" ");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
display(cart_1);
// LinkedList<Item> cart_2 = new LinkedList<>();
// System.out.println("======================================");
// display(cart_2);
}
private static void display(LinkedList<Item> Cart){
Scanner sc = new Scanner(System.in);
boolean quit = false;
boolean next = true;
ListIterator<Item> listIterator = Cart.listIterator();
if(Cart.size() == 0){
System.out.println("Add items to the cart..");
}else {
System.out.println("Display Item in Cart: " + listIterator.next().toString());
System.out.println("");
}
printMenu();
Db d = new Db();
int ch;
while(!quit){
System.out.println("Enter Your Choice To Continue Shopping:");
ch = sc.nextInt();
switch (ch){
case 1:
// Show all items
{
System.out.println("----------------------------------------------------------------------");
System.out.println("Showing All Items List");
System.out.println("----------------------------------------------------------------------");
for (int i=0;i<categories.size();i++) {
System.out.println(categories.get(i).cat_type);
System.out.println();
categories.get(i).show();
try
{
Thread.sleep(2000);
}
catch(Exception e)
{
System.out.println(e);
}
}
break;
}
case 2:
//Add to cart
{
System.out.println("Please add item to cart:");
// LinkedList<Item> cart_1 = new LinkedList<>();
String cat_choice;
System.out.println("Choose Category:");
cat_choice = sc.next();
for(int i=0;i<categories.size();i++){
if (categories.get(i).cat_type.equals(cat_choice)){
String user_choice;
System.out.println("Enter item to be added:");
user_choice= sc.next();
categories.get(i).addToCart(user_choice,Cart);
display(Cart);
}
}
System.out.println("This category is not in the list");
break;
}
case 3:
// Display All Items in Cart
System.out.println("Added items to your shopping cart:");
printItemsList(Cart);
break;
case 4:
// Display Current Item in Cart
if(next){
if(listIterator.hasPrevious()){
System.out.println("Now displaying "+listIterator.previous().toString());
next = false;
}else {
System.out.println("We are at the start of the list");
}
}else {
if(listIterator.hasNext()){
System.out.println("Now displaying "+listIterator.next().toString());
next = true;
}else {
System.out.println("No current item to show..");
}
}
printMenu();
break;
case 5:
//Display Next Item in Cart
if(!next){
if(listIterator.hasNext()){
listIterator.next();
}
next = true;
}
if(listIterator.hasNext()){
System.out.println("Currently Displaying "+listIterator.next().toString());
}else {
System.out.println("Something went wrong..No next item to show ");
next = false;
}
printMenu();
break;
case 6:
// Display Previous Item in Cart
if(next){
if (listIterator.hasPrevious()){
listIterator.previous();
}
next = false;
}
if(listIterator.hasPrevious()){
System.out.println("Now displaying "+listIterator.previous().toString());
}else {
System.out.println("This is first item,can't show previous item");
next = false;
}
printMenu();
break;
case 7:
//Remove item from cart
if (Cart.size() >0){
listIterator.remove();
System.out.println("Item removed");
if(listIterator.hasNext()){
System.out.println("Now Displaying "+listIterator.next().toString());
}
else {
if(listIterator.hasPrevious())
System.out.println("Now Displaying "+listIterator.previous().toString());
}
}
// System.out.println("This is empty cart");
printMenu();
break;
case 8:
//Payment
{
System.out.println("Thank You For Shopping With Us");
System.out.println("Redirected To Payment Page");
quit = true;
}
break;
case 9:
// Display All Categories
{
System.out.println("List of All Categories and Seller: ");
java.util.Iterator itr = categories.iterator();
while (itr.hasNext())
{
Category c = (Category) itr.next();
System.out.println(c.cat_type + ":" + c.seller);
}
printMenu();
break;
}
case 10:
// Print Menu List
printMenu();
break;
case 11:
{
System.out.println("Adding Customer..");
d.add_record();
break;
}
case 12:
{
System.out.println("Updating Customer..");
d.edit_record();
break;
}
case 13:
{
System.out.println("Displaying All Customers..");
d.display_records();
break;
}
case 14:
{
System.out.println("Deleting Customer..");
d.remove_record();
break;
}
case 15:
{
System.out.println("Thank You For Shopping With Us");
quit = true;
break;
}
case 16:
{
System.out.println("File Handling");
try
{
FileWriter f = new FileWriter("E:/Java/File Handling/project.txt");
f.write("List of All Categories and Seller:\n ");
java.util.Iterator itr = categories.iterator();
while (itr.hasNext())
{
Category c = (Category) itr.next();
f.write(" Category : "+c.cat_type);
f.write(" Seller : "+c.seller);
f.write("\n");
}
f.close();
System.out.println("New Data written in file successfully");
}
catch (Exception e)
{
System.out.println(e);
}
break;
}
default:
System.out.println("Please Enter Valid Choice to Continue Shopping!!!");
}
}
}
private static void printMenu(){
try
{
Thread.sleep(2000);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("======================================================================================");
try
{
Thread.sleep(200);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("Available Choices\n ");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("1 - Display Categorywise Items List \n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("2 - Add to Cart\n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("3 - Display All Items in Cart\n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("4 - Display Current Item in Cart\n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("5 - Display Next Item in Cart\n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("6 - Diplay Previous Item in Cart\n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("7 - Remove Current Item in Cart\n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("8 - Proceed to Payment\n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("9 - Display All Categories\n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("10 - Display MenuList \n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("11 - Add Customer\n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("12 - Update Customer Info\n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("13 - Display Customer Info\n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("14 - Delete Customer Info\n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("15 - Exit\n");
try
{
Thread.sleep(500);
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("16 - Add data to file");
}
private static void printItemsList(LinkedList<Item> Cart){
Iterator<Item> iterator = Cart.iterator();
System.out.println("----------------------------------------");
while (iterator.hasNext()){
System.out.println(iterator.next());
}
System.out.println("----------------------------------------");
}
}