Hey

.
The guys are write. With Java DON'T RUSH. If you do it gets waaaaaaaaayyyyy complicated. A good way to start is the usual " first words of a programer". Creating a Java program that gives you the output " Hello World". I know you already made a couple of programs, but if you take it a bit easy then what your going for later on will be reaaallly easy. Start with simple things first. Strings, loops, if staments then arrays 2D then eventually 3D, 4D... etc . Try making extremely simple programs using these things then move on to methods and its parameters then classes and its parameters ( mostly will help for organization). I recommend using JCreator at first.
If by any chance you didn't understand what the meanings of Strings, arrays, loops....etc then you are going to get wayyy to complicated.
Just in case you need an example with JCreator and how to program:
Remember:
- Java is case sensitive ( capital letters and small letters mean different things, you have to be careful HOW you type)
- Don't worry too much about what does public class or public static void...etc means at the time being. You only ned to start in a simple way.
Public class FirstProg{
Public Static void main ( String[] args){
// Write your program here.
}
}
By any chance you already know all this I'm sorry :P but I don't know what level you programer you are and judging by the comments. I just gave a quick tip and help JUST IN CASE you didn't know all this.
Sorry for talking a lot ^^