Java newbe having trouble with HelloWorldApp

I can get the applets examples working, I'm just having trouble with the HelloWorldApp. I keep getting the same error and I'm typing the code exact. I've trying reinstalling the program and I followed every step to install it. Can you please help me?

This is the code I wrote:

/**

* the HelloWorldApp class implements an application that

* displays "Hello World!" to the standard output.

*/

publicclass HelloWorldApp{

publicstaticvoid main(String[] args){

// Display "Hello World!"

System.out.printIn("Hello World!");

}

}

And this is the error I keep getting:

Directory of E:\java_code

11/16/2004 07:30a<DIR> .

11/16/2004 07:30a<DIR> ..

11/17/2004 06:56a281 HelloWorldApp.java

11/17/2004 06:47a312 HelloWorld.java

11/17/2004 06:49a184 Hello.html

11/17/2004 06:51a372 HelloWorld.class

4 File(s) 1,149 bytes

2 Dir(s)38,060,032 bytes free

E:\java_code>javac HelloWorldApp.java

HelloWorldApp.java:8: cannot resolve symbol

symbol : method printIn (java.lang.String)

location:class java.io.PrintStream

System.out.printIn("Hello World!");

^

1 error

E:\java_code>

Please help so I can finally move on! Thanks!

[1776 byte] By [rocket] at [2007-9-30 22:26:36]
# 1
is that System.out.print"l"n < L or System.out.print"I"n < this one use i -- icecream ? I think you used capital i... must be small sized L
JavaSharingan at 2007-7-7 12:49:50 > top of Java-index,Security,Event Handling...
# 2
System.out.println , the word println comes from print line, not print in
JavaSharingan at 2007-7-7 12:49:50 > top of Java-index,Security,Event Handling...
# 3
The API documentation is your friend, use it.
javajugs at 2007-7-7 12:49:50 > top of Java-index,Security,Event Handling...
# 4

HelloWorldApp.java:8:

Referes to the file name and the line number that the Compiler error occured

cannot resolve symbolsymbol : method printIn (java.lang.String)

There is a symbol That I didn't recognize which is a method has a name printIn and takes a String as a parameter

location: class java.io.PrintStream

The Location of the un recognized symbol is in the Class PrintStream ( The System.in Object )

MohdSleem at 2007-7-7 12:49:50 > top of Java-index,Security,Event Handling...
# 5
>> The Location of the un recognized symbol is in the> Class PrintStream ( The System.in Object )How could it be System.in when the code doesn't use it?
javajugs at 2007-7-7 12:49:50 > top of Java-index,Security,Event Handling...