Create a java application that would read a comma delimited text file that has information about each employee. The java program would read the file and print out information for each organization.
Ideally this would be done by creating an employee item and each item is stored in a vector.
The input is basically: employee, manager, location, subArea, and Organization. There would be 2 ouputs:
Organization Details:
<# of Organizations>,Org1,<# of SubOrgs in Org1>,SubOrg0,<# of managers in SubOrg1 and Org1>,Manager1,<# of employees for manager1 in SubOrg1 and Org1>, employee1, employee2, employee3, Manager1,<# of employees for Manager2 in Suborg1 in Org 1>, employee3, SubOrg1....
Location Details:
<# of Locations>,AR,<# of employees at loc1>,employee7, employee11, CA, <# of employees @ loc2> ....