Welcome to Dream.In.Code
Become a Java Expert!

Join 150,369 Java Programmers for FREE! Get instant access to thousands of Java experts, tutorials, code snippets, and more! There are 1,855 people online right now. Registration is fast and FREE... Join Now!




Eclipse IDE?

2 Pages V  1 2 >  
Reply to this topicStart new topic

Eclipse IDE?, Eclipse versus Notepad

iNaStY v3
3 Feb, 2008 - 04:01 PM
Post #1

D.I.C Head
Group Icon

Joined: 3 Feb, 2008
Posts: 63


Dream Kudos: 50
My Contributions
Hello all! Wow I just discovered this website, and....WOW lol. I just started programming this semester at the University of Texas at Austin. This is probably going to be a really stupid question to everyone here who seems to be quite advanced in their programming knowledge, but here's my question:

My first book, Programming and Problem Solving with Java, gave me a CD with Eclipse IDE. I just noticed it now, a few weeks into the semester, and prior I had just been typing my code with notepad and managing my JDK through CMD (I have my runtime enviornment installed on a flash drive). I'm just wondering which I should be using, if there is any difference at all.

To give you an idea how "beginner" I really am, I just learned what the Scanner class was lol. I couldn't find anything on this website or the web answering this question.

Thanks guys! I look forward to becoming a programmer! (video games wink2.gif my username is my Gamertag on Xbox live)
User is offlineProfile CardPM
+Quote Post

William_Wilson
RE: Eclipse IDE?
3 Feb, 2008 - 04:13 PM
Post #2

lost in compilation
Group Icon

Joined: 23 Dec, 2005
Posts: 4,101



Thanked: 25 times
Dream Kudos: 3275
Expert In: Java, C, Javascript

My Contributions
an IDE will make the process easier, most include debuggers and syntax highlighting to make your life much less cluttered as well.

I would recommend learning Eclipse, but knowing how to compile via command line is a good thing to know.
User is offlineProfile CardPM
+Quote Post

Mike007
RE: Eclipse IDE?
3 Feb, 2008 - 04:34 PM
Post #3

D.I.C Head
Group Icon

Joined: 30 Aug, 2007
Posts: 248



Thanked: 4 times
Dream Kudos: 75
My Contributions
First of all, welcome to DIC smile.gif!

Now don't worry about being a beginner we all started from somewhere, I remeber being a beginner a long time ago, the good old days lol.

Anyway yeah you should be using eclipse, the auto complete function and the error checking will teach you alot, without getting too much of a head ache. What I like about the auto complete is that i can explorer the different classes that java offers and the different functions, and sometimes my own functions that i wrote a while ago and i no longer remeber their names.

Good luck!
User is offlineProfile CardPM
+Quote Post

Tom9729
RE: Eclipse IDE?
3 Feb, 2008 - 04:36 PM
Post #4

Debian guru
Group Icon

Joined: 30 Dec, 2007
Posts: 1,592



Thanked: 12 times
Dream Kudos: 325
My Contributions
Two of Eclipses greatest Java features IMO are it's auto completion, and it's close integration to the Javadocs program.

For example, if you have a String object (String s = "Hello world!";), and you want to call one of the String class's methods, but you don't know it's name, you can activate auto completion by pressing "CTRL + Space" (you would type s. first).

A list of methods will pop up, with brief little descriptions.

Another thing I really like about Eclipse is the fact that it automatically (usually, if not, the hot key is SHIFT + CTRL + O) selects the proper imports. If I want to use an action listener, and I add the line implements ActionListener Eclipse automatically adds the proper import for that.

Umm, in an IDE you get syntax highlighting, which is a huge plus. Eclipse also has auto formating (if you turn it on) that will allow you to type messy but keep your code clean.

There's also refactoring, which allows you to move a class to a different package and have all instances of that class updated automatically.

The only thing I don't like about Eclipse is how big it is. It takes ages to load up off my jump drive, so I just use it at home. If you're running everything off a jump drive, I'd say leave Eclipse home and stick with what you've been doing up until now. But for god's sake, please get something better than notepad. tongue.gif
User is online!Profile CardPM
+Quote Post

iNaStY v3
RE: Eclipse IDE?
3 Feb, 2008 - 06:21 PM
Post #5

D.I.C Head
Group Icon

Joined: 3 Feb, 2008
Posts: 63


Dream Kudos: 50
My Contributions
thanks everybody for those quick responses! I don't think I'm far enough to know everything that an IDE does, but I will start becoming accustom to it. And Tom, I will definitely download that Notepad++. Sorry lol I didn't know there was an advanced notepad.

Right now I'm just working on the Mortgage calculator. I've done the HelloWorld, PrintName, and FreezeBoil and a few others I've just done for fun to explore Java on my own. The only problem with the Mortgage I'm having is that the forums on here use import javax.swing* and we haven't even learned that yet lol. So I'm going to play around with that more and more and see what I'm doing wrong!

Thanks again guys! Can't wait till I understand what ya'll are talking about!!
User is offlineProfile CardPM
+Quote Post

capty99
RE: Eclipse IDE?
3 Feb, 2008 - 06:26 PM
Post #6

the real kya
Group Icon

Joined: 26 Apr, 2001
Posts: 9,259



Thanked: 16 times
Dream Kudos: 550
My Contributions
hey, what class are you in.

I'm a junior at UT just went through 2 semesters of Java with Mary Eberlein.

if your not a CS major then I'm guessing you have her.

I have all my old projects smile.gif

if you are a CS major i may or may not know your prof.
User is online!Profile CardPM
+Quote Post

iNaStY v3
RE: Eclipse IDE?
3 Feb, 2008 - 06:34 PM
Post #7

D.I.C Head
Group Icon

Joined: 3 Feb, 2008
Posts: 63


Dream Kudos: 50
My Contributions
Yea I'm a Computer Science major. My professor is Ben Blake, and the class number 260. I don't know if that helps but I have no idea who Mary Eberlein is lol. Blake did say the first day that this was the first semester they were using my book.
User is offlineProfile CardPM
+Quote Post

KYA
RE: Eclipse IDE?
3 Feb, 2008 - 08:25 PM
Post #8

#include <nerd.h>
Group Icon

Joined: 14 Sep, 2007
Posts: 5,944



Thanked: 159 times
Dream Kudos: 1375
My Contributions
For java, I like JCreator (written in C++ tongue.gif )

--KYA
User is online!Profile CardPM
+Quote Post

bhandari
RE: Eclipse IDE?
4 Feb, 2008 - 05:12 AM
Post #9

D.I.C Addict
Group Icon

Joined: 31 Jan, 2008
Posts: 747


Dream Kudos: 900
My Contributions
Though never used, there is JDeveloper also which is used in corporations.

But for a beginner, stick to Notepad/editplus/textpad etc.
User is offlineProfile CardPM
+Quote Post

1lacca
RE: Eclipse IDE?
4 Feb, 2008 - 06:49 AM
Post #10

code.rascal
Group Icon

Joined: 11 Aug, 2005
Posts: 3,822



Thanked: 12 times
My Contributions
QUOTE(KYA @ 4 Feb, 2008 - 05:25 AM) *

For java, I like JCreator (written in C++ tongue.gif )

HERETIC!
User is offlineProfile CardPM
+Quote Post

Programmist
RE: Eclipse IDE?
4 Feb, 2008 - 03:12 PM
Post #11

Four-letter word
Group Icon

Joined: 2 Jan, 2006
Posts: 1,256



Thanked: 11 times
Dream Kudos: 100
Expert In: Java

My Contributions
QUOTE(KYA @ 3 Feb, 2008 - 10:25 PM) *

For java, I like JCreator (written in C++ tongue.gif )

--KYA


So you either pay for your IDE or you're missing key functionality (like debugger).

This post has been edited by Programmist: 4 Feb, 2008 - 03:12 PM
User is offlineProfile CardPM
+Quote Post

capty99
RE: Eclipse IDE?
4 Feb, 2008 - 03:13 PM
Post #12

the real kya
Group Icon

Joined: 26 Apr, 2001
Posts: 9,259



Thanked: 16 times
Dream Kudos: 550
My Contributions
at UT we all used blueJ for the first 2 semesters. now its eclipse.
User is online!Profile CardPM
+Quote Post

2 Pages V  1 2 >
Fast ReplyReply to this topicStart new topic
Time is now: 1/9/09 02:17PM

Be Social

Dream.In.Code RSS Feed Dream.In.Code LinkedIn Group Follow Us On Twitter

Live Java Help!

Java Tutorials

Reference Sheets

Java Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month