+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: suggestion Java IDE (Linux)

  1. #1
    rolandr is offline x10Hosting Member rolandr is an unknown quantity at this point
    Join Date
    Sep 2009
    Posts
    70

    Angry suggestion Java IDE (Linux)

    I took a course in Java. We were using TextPad (I think) compile it in Blue Bird. [ Don't lauqh ].

    I did have have Borland's J++ but it was Window 2000 (or Win 98 )

    I'm looking at all these Linux Java IDE. Anyone have a suggestion which is fairly easy on the learning curve?

    If no one answer, then I'm going have to use the VI editor and compile my Java programs at the command line.
    Last edited by rolandr; 10-27-2010 at 01:03 PM.

  2. #2
    misson is offline x10 Spammer misson is a jewel in the rough
    Join Date
    Mar 2008
    Location
    Libertatia
    Posts
    2,506

    Re: suggestion Java IDE (Linux)

    VI, while a powerful editor, is not an IDE, and doesn't offer everything an IDE offers. If an IDE is truly what you desire, don't settle for an editor (not that there's anything wrong with developing with an editor).

    I mostly use Eclipse but wouldn't recommend it; no-one would describe it as "easy to learn". I'm not certain which IDEs are the easiest to learn, but try out NetBeans and IntelliJ Community Edition and see which you like. If you don't like those, a web search will turn up many more. Perhaps someone with more experience with these IDEs will chime in.
    Be sure to read all pages linked in this post; they have further information that should prove useful. When asking for help, make sure you follow Eric Raymond's and Jon Skeet's guidelines for prompt, accurate responses. Please answer any questions I ask; they're not rhetorical (probably). Any posted code is intended as illustrative example, rather than a solution to your problem to be copied without alteration. Study it to learn how to write your own solution.
    Misson, not Mission.

  3. #3
    johndass is offline x10Hosting Member johndass is an unknown quantity at this point
    Join Date
    Oct 2007
    Posts
    28

    Re: suggestion Java IDE (Linux)

    Yes, as [mission] suggested, Netbeans is easy to install and use. Ideal IDE for beginner. Eclipse is for more experienced programmers, IMHO.

  4. #4
    rolandr is offline x10Hosting Member rolandr is an unknown quantity at this point
    Join Date
    Sep 2009
    Posts
    70

    Re: suggestion Java IDE (Linux)

    Thanks, mission, johndass. I was kidding about using the vi editor. ( lol ) Please note, I have an object oriented programming courses both C++ and Java under my belt so its not like I'm learning a new programming language. But I learned these using the vi editor then compiling it at the command line [ old school ].

    It just that the Borland's J++ (Window environment) had too many bells and whistle that I would like. I need something simple before I get something more productive advance IDEs as I go up the learning curve. Kind of like learning Paint => Paint Shop => Adobe PhotoShop (yes these are Window base).

    Thanks, I'll try Netbeans.

  5. #5
    garikr's Avatar
    garikr is offline x10Hosting Member garikr is an unknown quantity at this point
    Join Date
    Aug 2009
    Posts
    46

    Re: suggestion Java IDE (Linux)

    Why not to use "gedit" or other simple editor with code highlighting....

  6. #6
    bo17age is offline x10Hosting Member bo17age is an unknown quantity at this point
    Join Date
    Jun 2008
    Posts
    6

    Re: suggestion Java IDE (Linux)

    Netbean is the best

    try this: http://netbeans.org/

  7. #7
    jcscherer82 is offline x10Hosting Member jcscherer82 is an unknown quantity at this point
    Join Date
    Nov 2010
    Posts
    8

    Re: suggestion Java IDE (Linux)

    Well,

    Right now we are using in my college course NetBeans. It is quite a nice IDE but there are a few areas that it really does fail at.

    1. The way it formats code is not that great. I have been having a tough time trying to get it to style the code the way I want it.

    2. Whenever you use import for certain libraries, it will highlight it incorrectly. Just ignore it when it does this.

    3. Be careful with it because sometimes it will tell you that the code has changed and will revert it back to the beginning of the coding process. Just watch out for this because it really sucks when all of your code goes away after hours of work.

    4. Back up back up back up. This is the one thing that I had to learn. Once you delete a file, it does not go to the trash bin, it goes away forever. This happened to me when I was trying to finish a project before midnight and I accidentally deleted the entire project.

    Overall NetBeans is a nice IDE but there are a few things that you need to watch out for.

    Justin

  8. #8
    pazis.x77's Avatar
    pazis.x77 is offline x10Hosting Member pazis.x77 is an unknown quantity at this point
    Join Date
    Oct 2010
    Location
    Iran
    Posts
    13

    Cool Re: suggestion Java IDE (Linux)

    I prefer Eclipse myself. It's easy-to-use and free.

  9. #9
    essellar's Avatar
    essellar is offline Community Advocate essellar has a spectacular aura about
    Join Date
    Feb 2010
    Location
    Toronto, Ontario, CA
    Posts
    1,153

    Re: suggestion Java IDE (Linux)

    Quote Originally Posted by jcscherer82 View Post
    3. Be careful with it because sometimes it will tell you that the code has changed and will revert it back to the beginning of the coding process. Just watch out for this because it really sucks when all of your code goes away after hours of work.

    4. Back up back up back up. This is the one thing that I had to learn. Once you delete a file, it does not go to the trash bin, it goes away forever. This happened to me when I was trying to finish a project before midnight and I accidentally deleted the entire project.
    Those are two very real bummers. There is no reason that they should happen to you. Netbeans has built-in hooks to several different version control systems, including SVN, git and Mercurial. The only excuse for not using version control is not knowing about it, even as a solo developer. That working-class class you enhanced until it set the Java Virtual Machine on virtual fire? It's still there! You can revert. Need to create two or more very similar applications for different clients? Fork it. Need to work with another developer? Replicate your repository to a network location so you can both check out files and commit changes.

    As for Eclipse, well, it does everything -- if you know where to find it. It's big. It's also a huge resource hog, so you need a pretty substantial hardware stack to make it go. Linux may run just fine on an old 486SX-16, but Eclipse wants (and needs) your 2+ GHz multi-core processor and at least a couple of gigs of RAM to get out of neutral (it will run on less, but it'll feel just like an old VT-100 connected to an oversubscribed mini as you wait for your keystrokes to be echoed on screen). And while it's easy enough to hammer out simple code with few dependencies without opening a lot of books and stuff, the learning curve for anything approaching sophisticated use of the tool is pretty steep. Not emacs steep, but steep nonetheless.
    “Beware of bugs in the above code; I have only proved it correct, not tried it.” --Donald Knuth
    "It was as if its architects were given a perfectly good hammer and gleefully replied, 'neat! With this hammer, we can build a tool that can pound in nails.'" -- Alex Papadimoulis (on TheDailyWTF.com)

  10. #10
    medvezonak95 is offline x10Hosting Member medvezonak95 is an unknown quantity at this point
    Join Date
    Nov 2010
    Posts
    4

    Re: suggestion Java IDE (Linux)

    NetBeans 6.8

+ Reply to Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 3
    Last Post: 07-09-2010, 02:16 PM
  2. VPS - JAVA JDK Help
    By allofus in forum Programming Help
    Replies: 12
    Last Post: 03-14-2009, 12:09 PM
  3. Java
    By swirly in forum Programming Help
    Replies: 4
    Last Post: 02-06-2009, 11:20 AM
  4. want Java on x10
    By tgkprog in forum Feedback and Suggestions
    Replies: 28
    Last Post: 02-18-2008, 03:07 AM
  5. java
    By joni806 in forum General
    Replies: 7
    Last Post: 10-29-2006, 08:14 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers