Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 665 Bytes

File metadata and controls

19 lines (17 loc) · 665 Bytes

File Handling using Java

  • It is a File Handling Project created in Java. It contains two files Employee.java and Client.java, which are packages.

Employee.java

  • This file contains class Employee.
  • Which contains all the functionality from writing to file, to GUI using JOptionPane.

Client.java

  • This file contains class Client.
  • Which contains the Main menu.
  • It Imports the Employee Package.

Commands to Compile the files

For Employee

  • javac -d . Employee.java

For Client

  • javac -d . Client.java

To Run the program

  • Firstly you need to compile the both packages.
  • After compiling the files type java ACP.Client.Client.