public class HelloWorld
{
public static void main(String[] args)
{
System.out.println("Hello World");
}
}
Run that and see whether you still get the compilation error. If so then it is possible that your jdk installation was not 100% successful or your text editor cannot find the path to the java compiler..
HTH