Originally Posted by Nemaa
I don't have an english operating system so I can't tell you the exact error message what I get after giving "javac ESCS.java" command. It's someting about "javac" command not being recognized as a valid command.
|
You need 2 things to do this. The JDK (Java Development Kit) in order to compile the class file. When you input the command "javac ESCS.java" you're telling the JDK to compile the code into a binary file. Then you need the JRE (Java Runtime Environment) in order to execute the java code, which is done by invoking the JRE through "java ESCS"
Originally Posted by Kletha
Before in the thread (I think it's page 4 or 5) there is a diagram with the different hastes and what happens at different %.
|
The direct link to that post is already in my OP on the first page.