473,382 Members | 1,441 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 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 13693
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
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

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.