Lines 74 to 84:
catch(FileNotFoundException fnfe)
{
System.out.println("File Results not found.");}
catch(IOException ioe)
{
System.out.println("Unable to read from Results");}
return area;
}
As you can see you are missing a bracket. And here is a tip for the future.
Whenever you open a bracket immediately close it, and them start writing code inside it. If keep opening and writing code, then there is no way to remember of find where to close.
And I hope that you leave tabs when you open brackets:
if () {
if () {
for (;;) {
}
while () {
}
} else {
}
}