Ok so first off hello all and thanks in advance for your help. Ok so I've done some research with regards to the error messages I'm getting and I've checked all my curl braces so i don't know what could be wrong with. Anyways I'm writing code to emulate the enigma machine from WWII, part of the assignment is to read the inputs from a file already created. Now I know I'm missing some code here but I have absolutely no idea what is wrong with the program because I'm getting the errors all over the place.
9 errors found:
File: C:\Users\PJ\Downloads\enigma.java [line: 19]
Error: C:\Users\PJ\Downloads\enigma.java:19: illegal start of type
File: C:\Users\PJ\Downloads\enigma.java [line: 19]
Error: C:\Users\PJ\Downloads\enigma.java:19: illegal start of type
File: C:\Users\PJ\Downloads\enigma.java [line: 19]
Error: C:\Users\PJ\Downloads\enigma.java:19: ')' expected
File: C:\Users\PJ\Downloads\enigma.java [line: 19]
Error: C:\Users\PJ\Downloads\enigma.java:19: ';' expected
File: C:\Users\PJ\Downloads\enigma.java [line: 19]
Error: C:\Users\PJ\Downloads\enigma.java:19: <identifier> expected
File: C:\Users\PJ\Downloads\enigma.java [line: 19]
Error: C:\Users\PJ\Downloads\enigma.java:19: ';' expected
File: C:\Users\PJ\Downloads\enigma.java [line: 26]
Error: C:\Users\PJ\Downloads\enigma.java:26: 'else' without 'if'
File: C:\Users\PJ\Downloads\enigma.java [line: 32]
Error: C:\Users\PJ\Downloads\enigma.java:32: <identifier> expected
File: C:\Users\PJ\Downloads\enigma.java [line: 37]
Error: C:\Users\PJ\Downloads\enigma.java:37: class, interface, or enum expected
import java.awt.*;
import java.awt.font.*;
import java.text.*;
import java.util.*;
import java.util.List;
public class reader
{
String fileName = FileChooser.pickAFile();
FileInputStream in = new FileInputStream(fileName);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String strLine;
String[] myarray;
string myarray = new String[20];
if((strLine = br.readLine()) != " ")
{
for (int j = 0; j < myarray.length; j++)
{
myarray[j] = br.readLine();
system.out.prntln(myarray[j]);
}
else
{
j++;
}
}
in.close();
}
public static void main(String args[])
{
}
Thanks again for your help!