472,791 Members | 1,618 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,791 software developers and data experts.

Best programming software

Hi, im about to start learning how to program in JAVA 2 and was wondering
what software i should buy to learn the language. I have downloaded the
software development kit 1.4 but find the DOS based interface very difficult
to use as i am from the GUI age and hate DOS. I have heard that Borland J
Builder is the best development enviornment, i would appreciate any advise
you may have.

Thanx.
Jul 17 '05 #1
9 13658
There is also JCreator (tryed that one, it's not too bad), a friend of
mine uses TextPad and love it. I personally use VIM (as for everything
else). There is no better editor, only good ones. It all depends on how
much you are ready to invest and what your preferences are.

You can make a search on google for the urls of all the above editors.
("I'm feeling lucky" should be safe enough)

Buster wrote:
Hi, im about to start learning how to program in JAVA 2 and was wondering
what software i should buy to learn the language. I have downloaded the
software development kit 1.4 but find the DOS based interface very difficult
to use as i am from the GUI age and hate DOS. I have heard that Borland J
Builder is the best development enviornment, i would appreciate any advise
you may have.

Thanx.


Jul 17 '05 #2
All the above editors are good.... but if you want to start
development on huge application the best IDE i would suggest is
Eclipse... it is availabe for free download on www.eclipse.org .. It
has umpteen number of plugins ... ranging from jsp, j2ee ,tomcat...
plugins ..to UML ... etc .. these plugins are available for download
from www.sourceforge.net . it is absolutely fantastic. you got to try
it. it is way way more advanced than textpad or VIM.. It is pretty
much similar to Jbuilder .. it integrates with CVS directly..

Regards,
Karthik
Louis-Philippe Huberdeau <lp*********@sympatico.ca> wrote in message news:<Ug******************@news20.bellglobal.com>. ..
There is also JCreator (tryed that one, it's not too bad), a friend of
mine uses TextPad and love it. I personally use VIM (as for everything
else). There is no better editor, only good ones. It all depends on how
much you are ready to invest and what your preferences are.

You can make a search on google for the urls of all the above editors.
("I'm feeling lucky" should be safe enough)

Buster wrote:
Hi, im about to start learning how to program in JAVA 2 and was wondering
what software i should buy to learn the language. I have downloaded the
software development kit 1.4 but find the DOS based interface very difficult
to use as i am from the GUI age and hate DOS. I have heard that Borland J
Builder is the best development enviornment, i would appreciate any advise
you may have.

Thanx.

Jul 17 '05 #3
Lee
I use IntelliJ Idea (see www.intellij.com). It is by far the best Java IDE
that I have seen. It checks your code as you write it, highlights errors,
etc. It has great features for searching, code generation, and refactoring.
It can run the compiler for you, and/or you can hook it up to ant build
scripts. ("ant" is similar to "make"). It has debug, supports CVS, has lots
of keyboard shortcuts etc. (Something I really like is CTRL-Q shows javadoc
for the method under the cursor.)
I believe it now has a GUI development tool similar to what JBuilder does.
The creators are adding features quickly.
Regards,
Lee.
"Buster" <ms*******@blueyonder.co.uk> wrote in message
news:qa**************@news-binary.blueyonder.co.uk...
Hi, im about to start learning how to program in JAVA 2 and was wondering
what software i should buy to learn the language. I have downloaded the
software development kit 1.4 but find the DOS based interface very difficult to use as i am from the GUI age and hate DOS. I have heard that Borland J
Builder is the best development enviornment, i would appreciate any advise
you may have.

Thanx.

Jul 17 '05 #4
JBuilder is good.
Eclipse is also good, and should run better on a lowend machine.
JBuilder is more powerful and easier to set up correctly (sorry Eclipse
people, some way to go there. At least on my machine it failed to find such
essentials as JDKs for example).

But do at least learn the command line as well for the tools, you might end
up in situations where it's all you have (and VI or Emacs).

"Buster" <ms*******@blueyonder.co.uk> wrote in message
news:qa**************@news-binary.blueyonder.co.uk...
Hi, im about to start learning how to program in JAVA 2 and was wondering
what software i should buy to learn the language. I have downloaded the
software development kit 1.4 but find the DOS based interface very difficult to use as i am from the GUI age and hate DOS. I have heard that Borland J
Builder is the best development enviornment, i would appreciate any advise
you may have.

Thanx.

Jul 17 '05 #5
I can only say one thing: You have no idea on how to use VIM. Maybe it
does not do your UML, but who needs that to be integrated in an IDE? I
do my code design way before I get in front of a text editor and at that
point, they are prints.

:! Find something else VIM can't do.

Karthik A. wrote:
All the above editors are good.... but if you want to start
development on huge application the best IDE i would suggest is
Eclipse... it is availabe for free download on www.eclipse.org .. It
has umpteen number of plugins ... ranging from jsp, j2ee ,tomcat...
plugins ..to UML ... etc .. these plugins are available for download
from www.sourceforge.net . it is absolutely fantastic. you got to try
it. it is way way more advanced than textpad or VIM.. It is pretty
much similar to Jbuilder .. it integrates with CVS directly..

Regards,
Karthik
Louis-Philippe Huberdeau <lp*********@sympatico.ca> wrote in message news:<Ug******************@news20.bellglobal.com>. ..
There is also JCreator (tryed that one, it's not too bad), a friend of
mine uses TextPad and love it. I personally use VIM (as for everything
else). There is no better editor, only good ones. It all depends on how
much you are ready to invest and what your preferences are.

You can make a search on google for the urls of all the above editors.
("I'm feeling lucky" should be safe enough)

Buster wrote:
Hi, im about to start learning how to program in JAVA 2 and was wondering
what software i should buy to learn the language. I have downloaded the
software development kit 1.4 but find the DOS based interface very difficult
to use as i am from the GUI age and hate DOS. I have heard that Borland J
Builder is the best development enviornment, i would appreciate any advise
you may have.

Thanx.


Jul 17 '05 #6
I have used JCreator since I started learning Java, and have found it to
be very handy. It can create project files, and you can organise all
your different java/class files. You can also compile your project (or
single file) at the click of a button.
It handles highlighting code to show the reserved words, and auto indenting.
If you want to splurge and get the Pro version, it also has
code-completion, whick will pop-up with the methods etc for what you are
working on.

you can always check out the free version....what harm could it do?
http://www.jcreator.com

Buster wrote:
Hi, im about to start learning how to program in JAVA 2 and was wondering
what software i should buy to learn the language. I have downloaded the
software development kit 1.4 but find the DOS based interface very difficult
to use as i am from the GUI age and hate DOS. I have heard that Borland J
Builder is the best development enviornment, i would appreciate any advise
you may have.

Thanx.


Jul 17 '05 #7
Hi,
who ever said VIM is the best java IDE around must be kidding..
What do you mean by IDE- Integrated Development Environment... Which
means that you can do everything from design ... to code generation to
testing and deployment on the same application.
Regards
Karthik
Pete <pc********@iprimus.com.au> wrote in message news:<3f********@news.iprimus.com.au>...
I have used JCreator since I started learning Java, and have found it to
be very handy. It can create project files, and you can organise all
your different java/class files. You can also compile your project (or
single file) at the click of a button.
It handles highlighting code to show the reserved words, and auto indenting.
If you want to splurge and get the Pro version, it also has
code-completion, whick will pop-up with the methods etc for what you are
working on.

you can always check out the free version....what harm could it do?
http://www.jcreator.com

Buster wrote:
Hi, im about to start learning how to program in JAVA 2 and was wondering
what software i should buy to learn the language. I have downloaded the
software development kit 1.4 but find the DOS based interface very difficult
to use as i am from the GUI age and hate DOS. I have heard that Borland J
Builder is the best development enviornment, i would appreciate any advise
you may have.

Thanx.

Jul 17 '05 #8
I personally like the netbeans 3.5 (http://www.netbeans.org/) it's free
and Sun uses it for their development studios.
But you have to learn the command line too.

Buster wrote:
Hi, im about to start learning how to program in JAVA 2 and was wondering
what software i should buy to learn the language. I have downloaded the
software development kit 1.4 but find the DOS based interface very difficult
to use as i am from the GUI age and hate DOS. I have heard that Borland J
Builder is the best development enviornment, i would appreciate any advise
you may have.

Thanx.


Jul 17 '05 #9
"Buster" <ms*******@blueyonder.co.uk> wrote in message news:<qa**************@news-binary.blueyonder.co.uk>...
Hi, im about to start learning how to program in JAVA 2 and was wondering
what software i should buy to learn the language. I have downloaded the
software development kit 1.4 but find the DOS based interface very difficult
to use as i am from the GUI age and hate DOS. I have heard that Borland J
Builder is the best development enviornment, i would appreciate any advise
you may have.


All other replies talk of good IDEs to use... but IDEs are NOT good
for learning Java.

They provide additional packages, and some of them hides code away
from you or produce ugly codes (esp. UI design). If you use them while
you're just starting to learn, you'll get *addicted* to it.

Then take the IDE away and you can't code anything.

I don't think one has to buy anything to learn Java. Just grab a text
editor (probably one with syntax highlight and free, like Crimson
Editor, but even Notpad will do), download the SDK and API Docs from
Sun, then follow a book (like Thinking in Java, free at
http://www.mindview.net/Books/TIJ/) and start coding.
KC.
Jul 17 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

15
by: Joshua Beall | last post by:
Hi All, What is the best way to use a cookie to remember a logged in user? Would you store the username and password in two separate cookies? Should the password be plain text? Hashed? Not...
10
by: John Benson | last post by:
Hi, I see a lot of posts asking about "the best Python book." In my experience, there is no such thing, but there are a lot of good books that will help you along in different ways, and at...
11
by: DrUg13 | last post by:
In java, this seems so easy. You need a new object Object test = new Object() gives me exactly what I want. could someone please help me understand the different ways to do the same thing in...
136
by: Matt Kruse | last post by:
http://www.JavascriptToolbox.com/bestpractices/ I started writing this up as a guide for some people who were looking for general tips on how to do things the 'right way' with Javascript. Their...
4
by: Ron | last post by:
Greetings, Any recommendations on a book or online tutorial that my 15 yr old son can use to teach himself C? At 12 he downloaded a crude level editor for Jedi Knight called JED and taught...
3
by: Jose Fernandez | last post by:
Hello friends. I was searching on Amazon for a Object Oriented Programming book but I found so many many of them. Could you help me by telling me a the best in your opinion?? My target is to...
4
by: - - Vivian - - - - - - | last post by:
which best software for work with ASP.NET ? to design page join to programming send your suggestions Vivian
2
by: - | last post by:
I kinda like programming (Java is the only language I know) but have not been able to develop a complete software or get anywhere close to it. The reason why I like it is because it gives me great...
52
by: burgermeister01 | last post by:
First, let me say that this question is a rather general programming question, but the context is PHP, so I figured this group would have the most relevant insight. Anyways, this is also more of...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
How does React native implement an English player?
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.