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.

Results 1 to 14 of 14

Thread: Which IDE would you recommend?

  1. #1
    Member
    Join Date
    Mar 2010
    Posts
    271
    Thanks
    21
    Thanked 7 Times in 7 Posts

    Question Which IDE would you recommend?

    Which IDE would you guys recommend and why? And would you tell a begginer to use the IDE used in the book or other IDE?


  2. #2
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: Which IDE would you recommend?

    Which book are you referring to?

    I would strongly recommend eclipse It's very powerful, and the learning curve is fairly shallow (so long as you ignore the advance features, which you can do).

    Even if it's not the IDE used in the book, you should be able to get along fine as long as you skip over the "introduction" or "first program" sections. These sections usually discuss how to setup the IDE and run some basic functions (or worse, tell you how to compile and run from command-line).

    Eclipse website: Eclipse - Downloads

    Just get the second one (Eclipse for Java developers). To install eclipse, all you have to do is extract it anywhere you want and run the exe found inside.

    Here's a helpful website on getting started with eclipse:

    Getting started with Eclipse (there are 3 parts)
    Last edited by helloworld922; April 2nd, 2010 at 02:25 PM.

  3. #3
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: Which IDE would you recommend?

    I might catch heat for saying this but if you are truly just starting out, I would recommend using the command line. You really learn some nitty gritty details that way, and compiling a few simple classes are sometimes even easier (at least for me) using the command line. As your programs grow into more serious applications and packages, an IDE will become a lot more handy. In these cases I would recommend Eclipse. Its a fantastic concept and probably one of the better pieces of software you will find - and its free!

  4. #4
    Member
    Join Date
    Mar 2010
    Posts
    271
    Thanks
    21
    Thanked 7 Times in 7 Posts

    Default Re: Which IDE would you recommend?

    I wasn't referring to any book but the one I am using is Sam's Java in 24 Hours. I already downloaded Eclipse yesterday , but I found it much harder to use than NetBeans. And cmd, I found it fun! I will get back to it as soon as I know a little more of how to use it!


    Thanks!!
    -Melawe
    Last edited by Melawe; April 3rd, 2010 at 05:37 AM.

  5. #5
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: Which IDE would you recommend?

    To each his own

    From what I've heard about NetBeans, it's just as good as Eclipse, but I've never actually did any extensive use with it. Command-line is a useful skill to have, too (I know people who still love to use emacs and compile everything by command-line).

    Just find a method that you like best (at least try a few different ways, which it looks like you have) and stick with it.

  6. #6
    Member
    Join Date
    Mar 2010
    Posts
    271
    Thanks
    21
    Thanked 7 Times in 7 Posts

    Default Re: Which IDE would you recommend?

    Yea I tried Eclipse for an online Java course that got me in using the JFrame before it told my anything about cmd programs or Hello world. :/
    Went better than it should lol, Sams Java in 24 hours is way better though!

  7. #7
    Junior Member
    Join Date
    Feb 2010
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Which IDE would you recommend?

    I'd suggest NetBeans. It takes a bit of time to get used to, but not much, it has a built-in GUI Builder (plugin), optional support for PHP and C/C++, compiles straight to a JAR, and has support for other JDKs like EE and ME, including support for Glassfish and easy server deployment. It also runs Java web programs like Servlets and JSPs. All in all, it's a lot more in-depth than Eclipse. Eclipse gives you the tools you need to run programs, then lets you do your own thing. NetBeans does that, then is willing to step in and help you out when you need it. Oh, I almost forgot, it also has tools for a lot of services, including MySQL and JDBC databases, so long as you have a MySQL program (such as MS SQL Server or an AMP package).

  8. #8
    Member
    Join Date
    Mar 2010
    Posts
    271
    Thanks
    21
    Thanked 7 Times in 7 Posts

    Default Re: Which IDE would you recommend?

    My only problem with NetBeans is there where viruses with the last few updates. Didn't you get them?

  9. #9
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: Which IDE would you recommend?

    I'm guessing that the viruses came from somewhere else. Netbeans is distributed by a highly reliable source (Oracle/Sun Java), and doesn't come with any viruses.

    Get a good anti virus program and run a full scan (I'm not by any means an expert in finding and removing viruses). Make sure you get a reliable one! There are tons of fake anti virus programs that will cause more harm than good.

    Here's a list of some good comercial anti-virus programs:
    Top Ten Reviews: Anti Virus Software

    Here's a list of free anti-virus software that's for the most part reputable (i.e. they try to do good, their effectiveness varies)
    1. Microsoft Security Essentials
    2. The three listed Here

    edit: and of course, get NetBeans from a reliable source: Netbeans.org

  10. #10
    Member
    Join Date
    Mar 2010
    Posts
    271
    Thanks
    21
    Thanked 7 Times in 7 Posts

    Default Re: Which IDE would you recommend?

    Thats the site I got Netbeans from. And I use Kaspersky Internet Security 2010. Netbeans was the last download/update I had in weeks.

  11. #11
    Junior Member
    Join Date
    Apr 2010
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Which IDE would you recommend?

    First of all i don't trust any virus scanner from windows.But most of the virus scanner came be bypass and windows is a virus heaven.

    So that why i use linux


    Thinking in java is a very good book to read.

  12. #12
    Member
    Join Date
    Mar 2010
    Posts
    271
    Thanks
    21
    Thanked 7 Times in 7 Posts

    Default Re: Which IDE would you recommend?

    True, although most anti viruses aren't much better than them. Many times it's Malwarebytes spoting 6-10 and Kaspersky 1-4 or 5. Bit Defender was the best anti virus I used.

  13. #13
    Junior Member
    Join Date
    Dec 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Which IDE would you recommend?

    I hear Netbeans is pretty good. For the last 3 years, I have been using JCreator, which is good.

  14. #14
    mmm.. coffee JavaPF's Avatar
    Join Date
    May 2008
    Location
    United Kingdom
    Posts
    3,336
    My Mood
    Mellow
    Thanks
    258
    Thanked 294 Times in 227 Posts
    Blog Entries
    4

    Default Re: Which IDE would you recommend?

    Take a look at other peoples opinions here - http://www.javaprogrammingforums.com...-java-ide.html

    I also wrote an Eclipse tutorial - http://www.javaprogrammingforums.com...-new-post.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.

Similar Threads

  1. How can i create fake IP addresses to extract information for the DB?
    By neomancer in forum Java Theory & Questions
    Replies: 4
    Last Post: May 8th, 2009, 04:54 AM