User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the Java section within the Software Development category of DaniWeb, a massive community of 456,423 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,615 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Java advertiser: Lunarpages Java Web Hosting
Views: 4416 | Replies: 32
Reply
Join Date: Oct 2006
Location: New York City
Posts: 2,553
Reputation: mattyd is an unknown quantity at this point 
Rep Power: 8
Solved Threads: 1
Featured Poster
mattyd's Avatar
mattyd mattyd is offline Offline
Posting Maven

Java IDE(s)

  #1  
Jan 18th, 2007
Hello.

I am new to Java and I am easing into this new language via some basic tutorials.

I am using the Borland 2005 IDE; it is powerful and I quite like it save for that it seems incredibly bulky, hogs all resources, freezes, tries to shut itself down, etc, etc. It is at times a pain to work with, truthfully. Has anyone else used Borland for Java? Have you similar experiences? Perhaps it is my machine (its RAM is not very strong I admit, but still) I just wonder if it is Borland 2005, my machine, or both.

What IDE would you recommend for a Java beginner to start off with?

Thank-you in advance for your input and reply.

Matty D.
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Oct 2006
Posts: 86
Reputation: TylerSBreton is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 3
TylerSBreton's Avatar
TylerSBreton TylerSBreton is offline Offline
Junior Poster in Training

Re: Java IDE(s)

  #2  
Jan 19th, 2007
Originally Posted by mattyd View Post
Hello.

I am new to Java and I am easing into this new language via some basic tutorials.

I am using the Borland 2005 IDE; it is powerful and I quite like it save for that it seems incredibly bulky, hogs all resources, freezes, tries to shut itself down, etc, etc. It is at times a pain to work with, truthfully. Has anyone else used Borland for Java? Have you similar experiences? Perhaps it is my machine (its RAM is not very strong I admit, but still) I just wonder if it is Borland 2005, my machine, or both.

What IDE would you recommend for a Java beginner to start off with?

Thank-you in advance for your input and reply.

Matty D.

I can imagine plenty of people responding with the immediate suggestion of eclipse, however eclipse also uses a decent amout of recources probably due to the fact it IS programmed in java (I believe). I personally prefer an editor such as Textpad since it does not provide code completion so it really exposes to you to the language instead of writing the code for you (great for beginners). It provides a shortcut button to the Java compiler and runtime (assuming you have the JDK installed) and also provides syntax highlighting (which we all know is the most important feature). I would check it out if I were you.

P.S. No knock on eclipse, it is a great IDE, however it does use a fair amount of recources to run and for a beginner wanting to learn the language probably not the best option.

Regards,

Tyler S. Breton
Western New England College '08
Computer Science

Programming Lang's:

C, C#, Java, Lisp, MASM, Visual Basic 6
Reply With Quote  
Join Date: Mar 2004
Posts: 732
Reputation: Phaelax is on a distinguished road 
Rep Power: 6
Solved Threads: 31
Phaelax Phaelax is offline Offline
Master Poster

Re: Java IDE(s)

  #3  
Jan 19th, 2007
I like Netbeans over Eclipse. But on average for me, it'll use between 150-200mb of memory.
Reply With Quote  
Join Date: Dec 2004
Location: London or Slovakia
Posts: 2,628
Reputation: peter_budo is just really nice peter_budo is just really nice peter_budo is just really nice peter_budo is just really nice 
Rep Power: 12
Solved Threads: 311
Moderator
Featured Poster
peter_budo's Avatar
peter_budo peter_budo is offline Offline
Code tags enforcer

Re: Java IDE(s)

  #4  
Jan 19th, 2007
Originally Posted by TylerSBreton View Post
I personally prefer an editor such as Textpad since it does not provide code completion so it really exposes to you to the language instead of writing the code for you (great for beginners).


Just small note on this, you can always switch this option in any of them if you don't like it or don't wanted :mrgreen:

Depending on what I do, if it is web application or big project I use NetBeans just for small "test" programs I use JCreator
Learn to see in another's calamity the ills which you should avoid.
Publilius Syrus
(~100 BC)

LJC - London Java Community, JAVAWUG (Java Web User Group), Coding the Architecture
Reply With Quote  
Join Date: Sep 2006
Posts: 289
Reputation: Colin Mac is on a distinguished road 
Rep Power: 3
Solved Threads: 18
Colin Mac Colin Mac is offline Offline
Posting Whiz in Training

Re: Java IDE(s)

  #5  
Jan 19th, 2007
Perhaps it is my machine (its RAM is not very strong I admit, but still) I just wonder if it is Borland 2005, my machine, or both.

What IDE would you recommend for a Java beginner to start off with?

I recommend BlueJ, it's nice and simple.
http://www.bluej.org/download/download.html
Reply With Quote  
Join Date: Nov 2004
Location: Netherlands
Posts: 5,752
Reputation: jwenting is a jewel in the rough jwenting is a jewel in the rough jwenting is a jewel in the rough jwenting is a jewel in the rough 
Rep Power: 19
Solved Threads: 200
Colleague
jwenting's Avatar
jwenting jwenting is offline Offline
duckman

Re: Java IDE(s)

  #6  
Jan 19th, 2007
BlueJ is a disaster. It does NOT teach you programming, it teaches you some button clicking.

If you want to learn the language, don't use any IDE but a text editor and command line.
That way you'll learn the language rather than the tool (which is what way too many kids do, and end up utterly lost when they're presented with an environment where they don't have the exact same version of that tool set up exactly the same as at school).
As people are clearly allowed to attack me but I'm not allowed to defend myself, I no longer post to this site.
Reply With Quote  
Join Date: Oct 2006
Location: New York City
Posts: 2,553
Reputation: mattyd is an unknown quantity at this point 
Rep Power: 8
Solved Threads: 1
Featured Poster
mattyd's Avatar
mattyd mattyd is offline Offline
Posting Maven

Re: Java IDE(s)

  #7  
Jan 19th, 2007
Originally Posted by jwenting View Post
BlueJ is a disaster. It does NOT teach you programming, it teaches you some button clicking.

If you want to learn the language, don't use any IDE but a text editor and command line.
That way you'll learn the language rather than the tool (which is what way too many kids do, and end up utterly lost when they're presented with an environment where they don't have the exact same version of that tool set up exactly the same as at school).


Yes, that seems like sound advice. I wish to the learn the language not simply a single tool. Thanks for your reply.

Regards,
Matty D.
Reply With Quote  
Join Date: Sep 2006
Posts: 289
Reputation: Colin Mac is on a distinguished road 
Rep Power: 3
Solved Threads: 18
Colin Mac Colin Mac is offline Offline
Posting Whiz in Training

Re: Java IDE(s)

  #8  
Jan 19th, 2007
Meh, I disagree with that and I never said it teaches you anything. It's useful for typing code and compiling code. If someone ever puts themselves in a position where they are lost without their tool, it certainly isn't their tool that's at fault.
Reply With Quote  
Join Date: Nov 2004
Location: Netherlands
Posts: 5,752
Reputation: jwenting is a jewel in the rough jwenting is a jewel in the rough jwenting is a jewel in the rough jwenting is a jewel in the rough 
Rep Power: 19
Solved Threads: 200
Colleague
jwenting's Avatar
jwenting jwenting is offline Offline
duckman

Re: Java IDE(s)

  #9  
Jan 19th, 2007
BlueJ though is marketed as a teaching tool, and clearly does the exact opposite. It actually PREVENTS students from learning by hiding almost everything.
It also (from what I've heard) allows them to do things the language doesn't allow, whether by having a flawed compiler or by replacing certain styles of coding with other code under the hood before offering it to the compiler.

It's THE worst tool you can use to learn Java (apart from maybe Visual J++ which is years out of date but apart from that not too bad).
As people are clearly allowed to attack me but I'm not allowed to defend myself, I no longer post to this site.
Reply With Quote  
Join Date: Apr 2006
Location: Mumbai, India
Posts: 351
Reputation: aniseed is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 5
aniseed's Avatar
aniseed aniseed is offline Offline
Posting Whiz

Re: Java IDE(s)

  #10  
Jan 19th, 2007
Originally Posted by Colin Mac View Post
Meh, I disagree with that and I never said it teaches you anything. It's useful for typing code and compiling code. If someone ever puts themselves in a position where they are lost without their tool, it certainly isn't their tool that's at fault.
Yet if they start out without a tool in the first place, they would not land in that situation.
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

DaniWeb Java Marketplace
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes

Similar Threads
Other Threads in the Java Forum

All times are GMT -4. The time now is 1:07 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC