Hi i'm trying to create a program which will allow the user when run to choose whether they want the results i have on a separate file in plain text the console or html on a web browser. The only error that seems to be appearing at the moment is that the catch should be a finally but if i change it to finally it never closes my printwriter. Thanks for any help.
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.PrintWriter;
import java.lang.reflect.Array;
import java.util.Scanner;
public class HTML {
public static void main(String[] args) throws FileNotFoundException {
int scorehome = 0;
int scoreaway = 0;
int invalid = 0;
int goals = 0;
int valid = 0;
Scanner scanner = new Scanner(System.in);
System.out.println("Do you want to generate plain (T)ext or (H)TML");
String input = scanner.nextLine();
boolean generateHTML = false;
if ( input.equalsIgnoreCase("H") ) {
generateHTML = true;
}
String line; // stores the each line of text read from the file
PrintWriter online = new PrintWriter(new FileWriter("C:/temp/htmloutput.html"));
while ( scanner.hasNext() ) {
line = scanner.nextLine(); // read the next line of text from the file
//split the line
String [] elements = line.split(":");
//System.out.println("Element " + (i+1) + " was : " + elements[i]);
if (elements.length == 4) {
String home = elements[0].trim();
String away = elements[1].trim();
String homescore = elements[2].trim();
String awayscore = elements[3].trim();
boolean homescoreVal = false;
boolean awayscoreVal = false;
boolean homenameVal = false;
boolean awaynameVal = false;
try { // "try" is a special statement which allows us to deal with "exceptions"
scorehome = Integer.parseInt(homescore); // attempt to convert the String into an Integer type value
homescoreVal = true;
} catch (NumberFormatException e) {
homescoreVal = false;
}
try {
scoreaway = Integer.parseInt(awayscore); // attempt to convert the String into an Integer type value
awayscoreVal = true;
} catch (NumberFormatException e) {
homescoreVal = false;
}
if (home.length() <= 1) {
homenameVal = false;
} else {
homenameVal = true;
}
if (away.length() <= 1) {
awaynameVal = false;
} else {
awaynameVal = true;
}
if (homescoreVal == true && awayscoreVal == true
&& homenameVal == true && awaynameVal == true){
System.out.println(home + " [" + scorehome + "] | "
+ away + " [" + scoreaway + "]\r");
goals = (scorehome + scoreaway) + goals;
valid = 1 + valid;
} else {
invalid = 1 +invalid;
}
}
else {
invalid = 1 + invalid;
}
}
System.out.println("\rValid match was " + valid);
System.out.println("Total goals scored was " + goals);
System.out.println("Invalid match count was " + invalid + ".");
System.out.println("\nEOF"); // Output and End Of File message.
if (generateHTML == true) {
online.println("\rValid match was " + valid);
online.println("Total goals scored was " + goals);
online.println("Invalid match count was " + invalid + ".");
}
String locationOfFile = "C:\temp\\htmloutput.html";
try {
Runtime.getRuntime().exec("cmd.exe /C start " + locationOfFile);
} catch {
System.err.println("Error: unable to open " + locationOfFile);
}
}
}
Error message: Exception in thread "main" java.lang.Error: Unresolved compilation problem: Syntax error, insert "Finally" to complete TryStatement
at HTML.main(HTML.java:117)