Realm Master![]() Member Posts: 1971 From: USA Registered: 05-15-2005 |
But before I do, I need some help. I'm launching myself headfirst into Java (I hope) but I'm clueless (or just to lazy) about how to set Java up on my computer, i've tried, but failed miserably, I know only a few things.
I would like to use Netbeans B: Theres a site for java stuff... but... um.. I... Err... forgotit... hehe, I know it has like acommand function too, So i Need that too... please C: I'm pretty sure I need to install some java software on my computer too... END
Sorry for typing errors that might have been made adn not corrected, but now I have an excuse. I'm wearing a wrist brace (fell down on snowboard, I won't elaborate) ------------------ |
Lazarus![]() Member Posts: 1668 From: USA Registered: 06-06-2006 |
Download the Java SDK from Sun Microsystems' website. ![]() |
Jari![]() Member Posts: 1471 From: Helsinki, Finland Registered: 03-11-2005 |
NetBeans requires good computer but if you can run it it has useful autocompletion. And you can make mobile applications just by dragging and dropping controls... ------------------ [VoHW] (Help needed) [Blog] - Truedisciple (mp3) |
Realm Master![]() Member Posts: 1971 From: USA Registered: 05-15-2005 |
*sigh* Nevermind... I'll figure it out by myself.. ------------------ |
spade89![]() Member Posts: 561 From: houston,tx Registered: 11-28-2006 |
i never used netbeans but they say it's real cool,i use gel ide it's pretty cool too has lots of useful features,ok here is how to setup java, first you should know these terms: the jre is the environment where java apps run, jvm is the system that runs java apps, jdk is what you need to develop java apps it has a java compiler and other development stuff with it, depending on what kind of java apps you want to develop there are 3 types of java jdk's and jre's 1-standard ,2-enterprise, 3- micro, micro editon is for cell phone and pda developers, enterprise edition is for enterprise architects it has a lot to do with xml soap and jdbc , the standard edition is what you'll probably want to download it has everything you need to develop java apps for desktop applications,the fun thing about the jdk is it is open source and after you install it you should extract src.zip in your instllation directory it has the source code for all the java libraries,after you installed the jre and jdk you can install an ide(optional but convinient) and the ide asks you where the jdk installation directory is and you should show it. after that you are all ready to go. here is a useful link : http://www.javalobby.org/ after the installation try compiling and running the demo apps to see if everything works. ------------------ |
Realm Master![]() Member Posts: 1971 From: USA Registered: 05-15-2005 |
Anybody know some good Java tuts? (Tutorials for everyone else)
------------------ |
Mene-Mene![]() Member Posts: 1398 From: Fort Wayne, IN, USA Registered: 10-23-2006 |
Sorry, can't help. ------------------ |
Lazarus![]() Member Posts: 1668 From: USA Registered: 06-06-2006 |
Google is your friend... |
spade89![]() Member Posts: 561 From: houston,tx Registered: 11-28-2006 |
java cook-book is great,i think i found it and other books too at http://austin.youareinferior.net/books/ it also has a good collection of other books too. and if you are serious about learning java i would also recommend buying a real book with sourcecode-cd and stuff with it i pointed out just java2 before and if you wanna buy a tutorial, prentice-hall's tutorials by dietl&dietel is great it's one whole cd so i don't think it's available to download. the link i gave you above might be real useful. ------------------ |
Realm Master![]() Member Posts: 1971 From: USA Registered: 05-15-2005 |
Crap... Too many choices! To many different acryonyms! What do i need!?! I'm just trying to do java games (apps) on a windows computer, which JDK or SDK do i need?!?!
------------------ |
spade89![]() Member Posts: 561 From: houston,tx Registered: 11-28-2006 |
dude just read a book on java ,when you reach to the half you'll know what it all means and if you are not familiar with c/c++ don't just jump into it you can't just start making games in java out of nowhere without even knowing the language first, the 3d side of java is something you start learning after you master java(which will probably be a while.) ------------------ |
Realm Master![]() Member Posts: 1971 From: USA Registered: 05-15-2005 |
I'm familair, I just need another SKINA (Swift kick in the ***) to get me started again... ------------------ |
samw3![]() Member Posts: 542 From: Toccoa, GA, USA Registered: 08-15-2006 |
You know you might want to try eclipse. It is an incredible development environment. You would probably want to try easyeclipse first. See: http://www.easyeclipse.org/site/distributions/index.html I have many years experience in Java, and I have found eclipse to be a great tool. It cleans you code to you particular coding style and has some great source refactoring commands. Also, I should say that eclipse is a general framework that has a massive amount of plugins that work for a lot of different languages including Ruby, Python, PHP, and C++ I am sure there are literally thousands of tutorials on the web for java. Use search terms like "Getting Started", "Howto", and "Java Reference" Hope it helps. Sam [This message has been edited by samw3 (edited January 06, 2007).] |
SSquared![]() Member Posts: 654 From: Pacific Northwest Registered: 03-22-2005 |
For Java Tutorials, I have always found the Sun on-line tutorials to be well done. Check out http://java.sun.com/developer/onlineTraining/ for an overview of many different tutorials. I refer quite often to 'The Java Tutorials': http://java.sun.com/docs/books/tutorial/ It contains a bunch of categories from Java Basics to specific topics like Security, remote programming, GUI, and database. I have found these to be excellent resources and I refer back to them when I forget something. I 2nd the use of Eclipse. It's nice for Java development. |