-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmployManagementSystem.java
More file actions
279 lines (241 loc) · 8.16 KB
/
EmployManagementSystem.java
File metadata and controls
279 lines (241 loc) · 8.16 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
/******************** Importing Essential Libraries ************************/
import java.util.*;
import java.io.*;
/*************************** MENU OF EMS ****************************/
class MainMenu
{
public void menu()
{
System.out.println("\t\t*******************************************");
System.out.println("\t\t\t USER MANAGEMENT SYSTEM");
System.out.println("\t\t*******************************************");
System.out.println("\t\t\t --------------------");
System.out.println("\t\t\t ~$ FAROOQ KHAN ");
System.out.println("\t\t\t --------------------");
System.out.println("\n\nPress 1 : To Add an Employee Details");
System.out.println("Press 2 : To See an Employee Details ");
System.out.println("Press 3 : To Remove an Employee");
System.out.println("Press 4 : To Update Employee Details");
System.out.println("Press 5 : To Exit the EMS Portal");
}
}
/************************ To add details of Employee *********************/
class Employee_Add
{
public void createFile()
{
Scanner sc=new Scanner(System.in);
EmployDetail emp=new EmployDetail();
emp.getInfo();
try{
File f1=new File("file"+emp.employ_id+".txt");
if(f1.createNewFile()){
FileWriter myWriter = new FileWriter("file"+emp.employ_id+".txt");
myWriter.write("Employee ID:"+emp.employ_id+"\n"+"Employee Name :"+emp.name+"\n"+
"Father's Name :"+emp.father_name+"\n"+"Employee Contact :"+emp.employ_contact+"\n"+
"Email Information :"+emp.email+"\n"+"Employee position :"+emp.position+"\n"+
"Employee Salary :"+emp.employ_salary);
myWriter.close();
System.out.println("\nEmployee has been Added :)\n");
System.out.print("\nPress Enter to Continue...");
sc.nextLine();
}
else {
System.out.println("\nEmployee already exists :(");
System.out.print("\nPress Enter to Continue...");
sc.nextLine();
}
}
catch(Exception e){System.out.println(e);}
}
}
/************************* Taking Employee Details ************************/
class EmployDetail
{
String name;
String father_name;
String email;
String position;
String employ_id;
String employ_salary;
String employ_contact;
public void getInfo()
{
Scanner sc=new Scanner(System.in);
System.out.print("Enter Employee's name --------: ");
name=sc.nextLine();
System.out.print("Enter Employee's Father name -: ");
father_name=sc.nextLine();
System.out.print("Enter Employee's ID ----------: ");
employ_id=sc.nextLine();
System.out.print("Enter Employee's Email ID ----: ");
email=sc.nextLine();
System.out.print("Enter Employee's Position ----: ");
position=sc.nextLine();
System.out.print("Enter Employee contact Info --: ");
employ_contact=sc.nextLine();
System.out.print("Enter Employee's Salary ------: ");
employ_salary=sc.nextLine();
}
}
/************************ To Show details of Employee *********************/
class Employee_Show
{
public void viewFile(String s) throws Exception
{
File file = new File("file"+s+".txt");
Scanner sc = new Scanner(file);
while (sc.hasNextLine())
{
System.out.println(sc.nextLine());
}
}
}
/***************************** To Remove Employee *************************/
class Employee_Remove
{
public void removeFile(String ID)
{
File file = new File("file"+ID+".txt");
if(file.exists())
{
if(file.delete());
{
System.out.println("\nEmployee has been removed Successfully");
}
}
else
{
System.out.println("\nEmployee does not exists :( ");
}
}
}
/************************ To Update details of Employee ********************/
class Employee_Update
{
public void updateFile(String s,String o,String n) throws IOException
{
File file = new File("file"+s+".txt");
Scanner sc = new Scanner(file);
String fileContext="";
while (sc.hasNextLine())
{
fileContext =fileContext+"\n"+sc.nextLine();
}
FileWriter myWriter = new FileWriter("file"+s+".txt");
fileContext = fileContext.replaceAll(o,n);
myWriter.write(fileContext);
myWriter.close();
}
}
/************************ To Exit from the EMS Portal *********************/
class CodeExit
{
public void out()
{
System.out.println("\n*****************************************");
System.out.println("$ cat Thank You For Using my Software :) ");
System.out.println("*****************************************");
System.out.println("\t\t/~ <0d3d by Farooq Khan\n");
System.exit(0);
}
}
/***************************** Main Class *******************************/
class EmployManagementSystem
{
public static void main(String arv[])
{
/** To clear the output Screen **/
System.out.print("\033[H\033[2J");
Scanner sc=new Scanner(System.in);
Employee_Show epv =new Employee_Show();
int i=0;
/*** Callining Mainmenu Class function ****/
MainMenu obj1 = new MainMenu();
obj1.menu();
/*** Initialising loop for Menu Choices ***/
while(i<6)
{
System.out.print("\nPlease Enter choice :");
i=Integer.parseInt(sc.nextLine());
/** Switch Case Statements **/
switch(i)
{
case 1:
{
/** Creating class's object and calling Function using that object **/
Employee_Add ep =new Employee_Add();
ep.createFile();
System.out.print("\033[H\033[2J");
obj1.menu();
break;
}
case 2:
{
System.out.print("\nPlease Enter Employee's ID :");
String s=sc.nextLine();
try
{
epv.viewFile(s);}
catch(Exception e){System.out.println(e);}
System.out.print("\nPress Enter to Continue...");
sc.nextLine();
System.out.print("\033[H\033[2J");
obj1.menu();
break;
}
case 3:
{
System.out.print("\nPlease Enter Employee's ID :");
String s=sc.nextLine();
Employee_Remove epr =new Employee_Remove();
epr.removeFile(s);
System.out.print("\nPress Enter to Continue...");
sc.nextLine();
System.out.print("\033[H\033[2J");
obj1.menu();
break;
}
case 4:
{
System.out.print("\nPlease Enter Employee's ID :");
String I=sc.nextLine();
try
{
epv.viewFile(I);
}
catch(Exception e)
{
System.out.println(e);
}
Employee_Update epu = new Employee_Update();
System.out.print("Please Enter the detail you want to Update :");
System.out.print("\nFor Example :\n");
System.out.println("If you want to Change the Name, then Enter Current Name and Press Enter. Then write the new Name then Press Enter. It will Update the Name.\n");
String s=sc.nextLine();
System.out.print("Please Enter the Updated Info :");
String n=sc.nextLine();
try
{
epu.updateFile(I,s,n);
System.out.print("\nPress Enter to Continue...");
sc.nextLine();
System.out.print("\033[H\033[2J");
obj1.menu();
break;
}
catch(IOException e)
{
System.out.println(e);
}
}
case 5:
{
CodeExit obj = new CodeExit();
obj.out();
}
}
}
}
}
/****************************** CODED BY FAROOQ KHAN ************************/