![]() |
DISCUSSION: Beginning with Java
This thread is to discuss the article titled: Beginning with Java
|
Re: DISCUSSION: Beginning with Java
I have just skimmed the article, and it looks great. I will go through it in more detail later.
As someone who has been starting with Java only recently, these suggestions may come in handy to other beginners such as I: 1. By all means get a sophisticated IDE such as Netbeans or Eclipse, play around with it, and build a few apps, THEN PUT IT AWAY. It only gets in the way of learning the basics. 2. Download DrJava, which is a very simple, yet very supportive learning environment, and much easier to be productive in than using 'just' a text editor. It is open source, free, and is written in Java. 3. Download the full documentation from Sun. The API is here 4. Download, and work through Thinking in Java which is a free download, and will teach you tons. Just my 2p HTH Steve |
Hi
Well written article :), bad formatting though. Had a tough time reading. A couple of spaces and some para-breaks would be welcome. regards theN |
Yeh, I probably should have put some more formatting in.
|
It might be worthwhile to include a link to Blackdowns' site to download Java Linux stuff from. The site has links to loads of useful sounding programs too :)
glj |
A nice introduction, I'll be doing some Java development at college next year, and it's always nice to be ahead of the game.
|
What are the commands to run and compile!!!
I can say, it is good for beginers, but it lacks important fact, like what the command one should issue to compile these codes on Linux, and how one can see the output? It would be better if you include such topics.
|
Yeh, i guess I took it for granted that I knew the commands but 'javac' for compile and 'java' for running
|
Thanks, but I was looking for different thing!!
Yah, most know how to compile java source file with javac filename.java and run the compiled class file with java filename, but I was looking for different thing. I have installed Red Hat Linux 9, and with that there is free GNU, compiler and class file interpretor. After hard try, I found out how to use gcj and gij. So here is the command how to compile java on RedHat9.
To compile source file(filename.java) gcj -C filename.java To run calss file (filename.class) gij filename I hope this will help people like me, but I am still looking for how to run Applet on RedHat 9, I don't want to use Mozilla, because there is no plug-in installed and to install all these another headache for me as I know very less about linux. |
I've worked all the example programs up to class moon.The class moon program won't compile. I get:
ex6.java:16: cannot resolve symbol symbol : method readline() location: class java.io.BufferedReader Then there is a ^ under the first new in the following line: String strA = new BufferedReader(new InputStreamReader(System.in)).readLine(); Just wondering why it won't compile. No big deal, but a reply would be interesting.-- Thanks- Larry (I haven't been able to solve this problem) |
Have you typed this up the code yourself or have you tried copying and pasting into the .java file? Some times there can be typos that have an effect of the compilation of the programs. I'll check that out though.
|
darin3200 -- I tried again, thus time using Gentoo, I get the same result.
Last time I used Fedora Core 2. I'm using j2sdk1.4.2_04 on both systems. -- Thanks for the reply -- Larry |
Quote:
|
A good introduction!
|
True, nice article, but the formatting is confusing - especially for beginners. We should be teaching them to correclty format and indent code as this will serve them throughout their careers as programmers.
I also think that it is usually easier to read if you create one instance of the BufferedReader and re-use this. so Code:
BufferedReader keyboardInput = new BufferedReader(new InputStreamReader(System.in)))Code:
keyboardInput.readLine()..... |
| All times are GMT -5. The time now is 12:51 AM. |