I'm new to java and I'm still having issues.
I have written code that reads all its data from a text file. It compiles okay but when I try and instantiate the the code from another class it gives me the following error:
"unreported exception java.io.fileNotFoundException, must be caught or declared to be thrown".
I understand that their are probably issues with my throws try catch that I have and have not included but I dont really know how to use these and I would appreciate some assistance with it.
Thanks everyone who can help
This is the code
import java.io.*;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.*;
import java.util.Scanner;
public class readTextFile1
{
private static int index = 0;
private static int numberOfDepartmentsToRead;
private static int i;
private static ArrayList<Employee> allEmployees = new ArrayList<Employee>();
public readTextFile1()
throws FileNotFoundException
{
Scanner inFile = new Scanner (new File("startup.txt") );
storageSystem theStorageSystem = new storageSystem();
numberOfDepartmentsToRead = inFile.nextInt();
String depName = inFile.nextLine();
System.out.println("this is the first one "+depName);
while (index < numberOfDepartmentsToRead )
{
String depName1 = inFile.nextLine();
System.out.println("this should be the department name"+depName1);
String location1 = inFile.nextLine();
System.out.println("this should be the location"+location1);
String numberOfEmps = inFile.nextLine();
int numberOfEmps1 = Integer.parseInt(numberOfEmps);
System.out.println("this is the number of employees: "+numberOfEmps1);
Department newDepartment = new Department(depName1 , location1);
theStorageSystem.setDepartment(newDepartment);
while (i < numberOfEmps1 )
{
String fName = inFile.nextLine();
System.out.println("his first name is: "+fName);
String lName = inFile.nextLine();
System.out.println("his last name is"+ lName);
String gender = inFile.nextLine();
System.out.println("his gender is: "+gender);
String address = inFile.nextLine();
System.out.println("his adrs is: "+address);
String payLevel = inFile.nextLine();
System.out.println("and this is the pay level"+payLevel);
int dPayLevel = Integer.parseInt(payLevel);
Employee employeesFromList = new Employee(fName, lName, gender, dPayLevel, "1er-543");
theStorageSystem.setEmployee(employeesFromList);
i++;
}
i = 0;
index++;
}
while (inFile.hasNextLine())
{
String fName = inFile.nextLine();
System.out.println("his first name is: "+fName);
String lName = inFile.nextLine();
System.out.println("his last name is"+ lName);
String gender = inFile.nextLine();
System.out.println("his gender is: "+gender);
String address = inFile.nextLine();
System.out.println("his adrs is: "+address);
String payLevel = inFile.nextLine();
System.out.println("and this is the pay level"+payLevel);
int dPayLevel = Integer.parseInt(payLevel);
Employee employeesFromList = new Employee(fName, lName, gender, dPayLevel, "1er-543");
theStorageSystem.setEmployee(employeesFromList);
// allEmployees = theStorageSystem.getEmployee();
}
}
public ArrayList<Employee> giveEmployeeTf()
{
return allEmployees;
}
}

readTextFile1->ReadTextFile1,storageSystem->StorageSystem– amit Oct 17 '11 at 8:17