Hi good day to all... Need a little help on what free application or software can I use for java
programming. I'm a beginner in programming. Thanks in advance.
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hi good day to all... Need a little help on what free application or software can I use for java
programming. I'm a beginner in programming. Thanks in advance.
When starting out, you need to become familiar with using command-line Java, so you know the basic operation of setting up, writing, compiling, and running Java. Any simple editor will do for writing the code - notepad, TextPad, etc. Once you are familiar with the basics, you can migrate to an IDE (Integrated Development Environment), which will do a lot of the low-level work for you, check your code for syntax errors, compile & run code for you, and allow you to debug your code. If you try to start using an IDE without first becoming familiar with command-line Java, you'll find yourself lost and confused if the IDE doesn't do what you expect at some point.
Good free IDEs for Java development are JCreator, BlueJ, Eclipse, Netbeans, and IntelliJ IDEA. They're all free, and generally look similar, but have their own styles of project organisation. Each takes time to learn how to use, so once you know how to use command-line Java, have a play with them and see which one you find most comfortable.
Welcome to the forums seicair.
I would suggest starting here - Trail: Getting Started (The Java™ Tutorials)
I personally use the Eclipse IDE. If you want to have a play with it, follow this tutorial - http://www.javaprogrammingforums.com...plication.html
Please use [highlight=Java] code [/highlight] tags when posting your code.
Forum Tip: Add to peoples reputation by clicking the button on their useful posts.
seicair (June 14th, 2011)
Thanks for the help...