i have just started learniing java.
there are many IDEs available and i am confused which should i use.
Can anyone recommend which IDE should i use which is helpful in long run and easy to use
|
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
If you're a Java beginner, make sure you can write code with a text editor, compile in a command shell using javac.exe, and run in a command shell using java.exe. You'll have to have a thorough understanding of how CLASSPATH works. The problem I have with using an IDE is that it doubles the things you don't know anything about. Best to keep things simple when you're starting. There are lots of free IDEs for Java. Most people like Eclipse or NetBeans, but I'd recommend that you give IntelliJ's community edition a look. I think it's the best IDE by far. It's possible to set up Textpad so you can compile and run inside it for simple problems. | |||||||||||||||||
feedback
|
|
If you really want an IDE, I'd recommend you take a look at NetBeans. It's the IDE I started off with. It comes with lots of example projects, and it's easy enough to figure out for a beginner. And of course, it is coded in Java ;) | |||||
feedback
|
|
You should use Eclipse. In fact everyone should... for everything. Seriously, Eclipse is almost self-aware. Favourite keyboard shortcut: Alt-Shift-M - creates a new method from the current selection. Incredible. I quite like ALT-up/down arrow too. | |||||
feedback
|
|
Eclipse is the popular IDE. You can download the Java enabled version here. You can also look into working with IntelliJ IDEA. | |||
|
feedback
|
|
Eclipse is good for a beginner. Its free, has a ton of features, and its straight-up Java features are great. Intellij is great as well. Note that the free version of IntelliJ is stripped down -- to get full support for almost anything you can imagine you will need to pay for the full version. But for Java the community edition will be fine. I haven't used Netbeans but people use it and I've heard good things. For a beginner, any of the above will do. | |||||||
feedback
|
|
Get started with Notepad. It is the best way of learning Java as beginner. As you progress, you can use NetBeans or Eclipse as you wish. When you're starting, using Notepad is the best way to start. | ||||
feedback
|
|
It's not an IDE, but I'd say Notepad++ -- setting it up is a piece of cake: Just download the NppExec add-in, then press F6 and run this script:
Just make sure to change the folder version to the version of Java you have. | |||||
feedback
|
|
Try JCreator: http://www.jcreator.com/ It's fast and easy to use. | |||||||||
feedback
|