-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathData_file.java
223 lines (223 loc) · 8.31 KB
/
Data_file.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
import java.io.*;
import java.util.*;
public class Data_file
{
public static void create()throws myexception
{
try
{
Scanner sc=new Scanner(System.in);
Calendar ob=Calendar.getInstance();
FileOutputStream a=new FileOutputStream("Bank_D.dat");
DataOutputStream dos=new DataOutputStream(a);
int i=0;
while(sc.nextLine().equals(""))
{
System.out.println("Customer "+(i+1)+"\nEnter customer\'s name(omit use of numbers and shortforms):");
String name=sc.nextLine();
myexception.words_only(name);
dos.writeUTF(name);
System.out.println("Enter age:");
int age=sc.nextInt();
sc.nextLine();
myexception.age(age);
dos.writeInt(age);
System.out.println("Enter your mobile number(avoid country code):");
Long phone=sc.nextLong();
sc.nextLine();
if(!(phone>=1000000000l&&phone<10000000000l))
throw new myexception("INVALID PHONE NUMBER");
dos.writeLong(phone);
System.out.println("Enter type of account:");
String type=sc.nextLine();
myexception.words_only(type);
while(!(type.equalsIgnoreCase("savings")||type.equalsIgnoreCase("fix deposit")||type.equalsIgnoreCase("recurring deposit")))
{
if("savings".startsWith(type))
{
System.out.println("Did you mean Savings account:");
if(sc.nextLine().equalsIgnoreCase("yes"))
type="savings";
else
{System.out.println("So please re-enter type of account:");
type=sc.nextLine();}
}
else if("fix deposit".startsWith(type))
{
System.out.println("Did you mean Fix Deposit:");
if(sc.nextLine().equalsIgnoreCase("yes"))
type="fix deposit";
else
{System.out.println("So please re-enter type of account:");
type=sc.nextLine();}
}
else if("recurring deposit".startsWith(type))
{
System.out.println("Did you mean Recurring Deposit:");
if(sc.nextLine().equalsIgnoreCase("yes"))
type="recurring deposit";
else
{System.out.println("So please re-enter type of account:");
type=sc.nextLine();}
}
else
{
System.out.println("IT DIDN'T MATCH ANY OF THE MATCHING CASES\n So please re-enter type of account:");
type=sc.nextLine();
}
}
dos.writeUTF(type);
System.out.println("Enter amount of money deposited:");
int inmoney=sc.nextInt();
sc.nextLine();
myexception.negative_exc(inmoney);
dos.writeDouble(inmoney);
System.out.println("Enter date on which account was created(Format:DD/MM/YYYY):");
String date=sc.next();
basic.checkDateFor(date);
int time=ob.get(Calendar.YEAR)-(Integer.parseInt(date.substring(1+date.lastIndexOf('/')))+1);
myexception.negative_exc(time);
dos.writeInt(time);
dos.writeInt((int)(Math.random()*10000000));
i++;sc.nextLine();
}
dos.close();
}
catch(Exception e)
{
File b=new File("Bank_D.dat");
b.delete();
}
}
public void append()throws myexception
{
try
{
Scanner sc=new Scanner(System.in);
Calendar ob=Calendar.getInstance();
FileOutputStream a=new FileOutputStream("Bank_D.dat",true);
DataOutputStream dos=new DataOutputStream(a);
int i=0;
while(sc.nextLine().equals(""))
{
System.out.println("Customer "+(i+1)+"\nEnter customer\'s name(omit use of numbers and shortforms):");
String name=sc.nextLine();
myexception.words_only(name);
dos.writeUTF(name);
System.out.println("Enter age:");
int age=sc.nextInt();
sc.nextLine();
myexception.age(age);
dos.writeInt(age);
System.out.println("Enter your mobile number(avoid country code):");
Long phone=sc.nextLong();
sc.nextLine();
if(!(phone>=1000000000l&&phone<10000000000l))
throw new myexception("INVALID PHONE NUMBER");
dos.writeLong(phone);
System.out.println("Enter type of account:");
String type=sc.nextLine();
myexception.words_only(type);
while(!(type.equalsIgnoreCase("savings")||type.equalsIgnoreCase("fix deposit")||type.equalsIgnoreCase("recurring deposit")))
{
if("savings".startsWith(type))
{
System.out.println("Did you mean Savings account:");
if(sc.nextLine().equalsIgnoreCase("yes"))
type="savings";
else
{System.out.println("So please re-enter type of account:");
type=sc.nextLine();}
}
else if("fix deposit".startsWith(type))
{
System.out.println("Did you mean Fix Deposit:");
if(sc.nextLine().equalsIgnoreCase("yes"))
type="fix deposit";
else
{System.out.println("So please re-enter type of account:");
type=sc.nextLine();}
}
else if("recurring deposit".startsWith(type))
{
System.out.println("Did you mean Recurring Deposit:");
if(sc.nextLine().equalsIgnoreCase("yes"))
type="recurring deposit";
else
{System.out.println("So please re-enter type of account:");
type=sc.nextLine();}
}
else
{
System.out.println("IT DIDN'T MATCH ANY OF THE MATCHING CASES\n So please re-enter type of account:");
type=sc.nextLine();
}
}
dos.writeUTF(type);
System.out.println("Enter amount of money deposited:");
int inmoney=sc.nextInt();
sc.nextLine();
myexception.negative_exc(inmoney);
dos.writeDouble(inmoney);
System.out.println("Enter date on which account was sreated(Format:DD/MM/YYYY):");
String date=sc.next();
basic.checkDateFor(date);
int time=ob.get(Calendar.YEAR)-(Integer.parseInt(date.substring(1+date.lastIndexOf('/')))+1);
myexception.negative_exc(time);
dos.writeInt(time);
dos.writeInt((int)(Math.random()*10000000));
i++;sc.nextLine();
}
dos.close();
}
catch(Exception e)
{
File b=new File("Bank_D.dat");
b.delete();
}
}
public static int counter()throws IOException
{
FileInputStream a=new FileInputStream("Bank_D.dat");
DataInputStream b=new DataInputStream(a);
int c=0;
while(true)
{
try
{
b.readUTF();
b.readInt();
b.readLong();
b.readUTF();
b.readDouble();
b.readInt();
b.readInt();
c++;
}
catch(Exception e)
{
break;
}
}
b.close();
return c;
}
public static void updater(Print ob)throws IOException
{
File f=new File("Bank_D.dat");
f.delete();
FileOutputStream a=new FileOutputStream("Bank_D.dat");
DataOutputStream b=new DataOutputStream(a);
for(int i=0;i<ob.num;i++)
{
b.writeUTF(ob.name[i]);
b.writeInt(ob.age[i]);
b.writeLong(ob.phone[i]);
b.writeUTF(ob.type[i]);
b.writeDouble(ob.inmoney[i]);
b.writeInt(ob.time[i]);
b.writeInt(ob.acn[i]);
}
b.close();
}
}