Where Can I Download The Java Programming Language? And What Exactly Should I Download. I Just Want To Learn T?
o program using Java because we’re not learning it in school and I don’t understand the differences between the different downloads. What would you recommend I download. (If you explain why, I probably won’t understand, so just tell me what would be best- or at least good- for someone who just wants to start practicing programming in java).
Categories: Java Programming Download, Exactly, Java, Just, Language, Programming, Should, What, Where
The easiest thing to do is download the Java SDK bundled with NetBeans.
The minimum u need :
1-The Java compiler ( nicknamed javac), which converts ur source code to some other form ( the bytecode)
2-The Java interpreter ( called JVM) which converts the bytecode into machine language to be run by the computer
3-Essential Java library
4-An editor where u can type ur Java code ( maybe notepad or maybe an advanced IDE like BlueJ or NetBeans)
To get the stuff 1,2, and 3 above , watch this :http://www.youtube.com/watch?v=EhRL-X_-d…
To get 4 u can use Notepad or even better get BlueJ:http://www.youtube.com/watch?v=aqQefkprf…
BlueJ is very good for starters , as it has an easier itnerface then u can go for NetBeans or Eclipse IDEs
Good luck!