import java.util.*; import java.io.*; public class EmployeeMain { public static void main(String[] args) { String employeeType; String name; int id; double hourlyPay; double commissionRate; // open file and start file input try { Scanner scanner = new Scanner(new File("EmployeeData.txt")); scanner.next(); // read the number of employees int numberOfEmployees = scanner.nextInt(); // create array for employee information Employee[] employees = new Employee[numberOfEmployees]; // read the employee information from the file into the array for(int i=0;i