- It is a File Handling Project created in Java. It contains two files
Employee.java
andClient.java
, which are packages.
- This file contains
class Employee
. - Which contains all the functionality from writing to file, to GUI using JOptionPane.
- This file contains
class Client
. - Which contains the Main menu.
- It Imports the Employee Package.
- javac -d . Employee.java
- javac -d . Client.java
- Firstly you need to compile the both packages.
- After compiling the files type
java ACP.Client.Client
.