A WAG here, but it sounds like you need to get the JDK and not the JRE. 
 I'm not sure why the javac is there but it was my understanding that 
the jre is for executing .class files

Can you compile a HelloWorld.java program using javac?

/bill

public class HelloWorld
{
   public static void main(String [] arg)
   {
      System.out.println("I exist");
   }
}

Reply via email to