954,554 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

java compiler

where can i download a java compiler? :confused:

dummy00
Newbie Poster
7 posts since May 2005
Reputation Points: 10
Solved Threads: 0
 

hi

you can download j2se from http://java.sun.com/j2se/1.5.0/download.jsp
and set the path. You can use notepad to compile ur java programs.

sam1
Posting Whiz
300 posts since Nov 2004
Reputation Points: 10
Solved Threads: 1
 

Hi everyone,

If you do not want to use notepad, you can use the ide i am using
called Java IDE version 1.9. Its a no frills ide and thus no gui builder but you will learn more because you will be coding everything by hand

Here is the link you can download from

http://www.it.bton.ac.uk/staff/je/javide19.zip

I hoped this helped you

Yours Sincerely

Richard West

freesoft_2000
Practically a Master Poster
623 posts since Jun 2004
Reputation Points: 25
Solved Threads: 10
 

thanks :mrgreen:

dummy00
Newbie Poster
7 posts since May 2005
Reputation Points: 10
Solved Threads: 0
 

Eclipse is also a nice editor. A little bit of a memory hog, but i really enjoy working with it.

Regards,

Nate

hooknc
Posting Whiz in Training
219 posts since Aug 2005
Reputation Points: 11
Solved Threads: 8
 

Using JavaIDE:
--------------
The first time you run JavaIDE you will need to set it up for use with
your compiler (either Sun's "javac" compiler supplied as part of the
Java SDK, IBM's Jikes compiler, or the GJ compiler for the Generic
Java language). Choose the appropriate compiler and specify its full path
name; locate the runtime library "rt.jar" in your Java Runtime Environment
installation, and specify an applet viewer (either Sun's applet viewer
supplied with the Java SDK or a Java-aware web browser).

hi.. can you pls explain this.. im confused
where can i get this? (Sun's "javac" compiler supplied as part of the
Java SDK,)

dummy00
Newbie Poster
7 posts since May 2005
Reputation Points: 10
Solved Threads: 0
 

Yes, the java compiler is part of the SDK download. Javac is the program name that you will need from the sdk and is located in /jdk/bin.

The rt.jar file is located in the /jdk/jre/lib directory.

Regards,

Nate

hooknc
Posting Whiz in Training
219 posts since Aug 2005
Reputation Points: 11
Solved Threads: 8
 

ok thanks nate

dummy00
Newbie Poster
7 posts since May 2005
Reputation Points: 10
Solved Threads: 0
 

If you don't want to pay for an editor and you don't like VI (hard to imagine, but some people haven't seen the light) Eclipse is one of the best options (though not for beginners, jEdit or jExt are better for them as Eclipse like all IDEs prevents learning how to use the commandline tools by hiding all that from you which is a Bad Thing).

jwenting
duckman
Team Colleague
8,392 posts since Nov 2004
Reputation Points: 1,662
Solved Threads: 337
 

Another excellent editor is VIM ( http://www.vim.org/about.php) , think VI with buffers (multiple files) and syntax highlighting etc ... I couldn't be without it. Whenever I use any other editor I end up with ":w" all throughout my documents :) it's habbit.

Kate Albany
Junior Poster in Training
71 posts since Jun 2005
Reputation Points: 10
Solved Threads: 1
 

VIM is great (it's what 90% of all VI installations are anyway :) ).
:s:1,$:/hello world/Hello World/g

jwenting
duckman
Team Colleague
8,392 posts since Nov 2004
Reputation Points: 1,662
Solved Threads: 337
 

JEdit's my pick. It is a bit slow to start up and buffer all the files if you have hundreds like me. I like the highlighting and indention schemes. Most vates or ides never get the indention right. It would be something like this:

public void test()
{
               }


When I want it like this.

public void test()
{
}
server_crash
Postaholic
2,111 posts since Jun 2004
Reputation Points: 113
Solved Threads: 20
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You