what is to be downloaded to run java program

link|improve this question
1  
google fail? java.sun.com/javase/downloads – roe Nov 3 '09 at 10:16
Do you mean "run"? Or do you mean "write (and run)"? – APC Nov 3 '09 at 10:16
feedback

migrated from stackoverflow.com Nov 3 '09 at 10:19

This question came from our site for professional and enthusiast programmers.

closed as not a real question by nhinkle, Wuffers, studiohack Mar 27 '11 at 3:04

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

8 Answers

To run Java applications you need a Java Runtime Environment:

http://www.java.com/download/index.jsp

To develop Java applications, you need the SDK. The easiest way is probably to use an IDE, for example Eclipse.

link|improve this answer
feedback

To run a java program you need the JRE:

http://www.java.com/en/download/manual.jsp

To compile and develop you need the Java SDK (JDK):

http://java.sun.com/javase/downloads/index.jsp

link|improve this answer
feedback

You need to install the latest Java Runtime Environment (JRE) from here:

http://www.java.com/en/download/index.jsp
link|improve this answer
feedback

A java virtual machine available here: http://java.com/en/download/index.jsp

(this question is at the limit of not being programming related... consider posting similar stuff on superuser.com)

link|improve this answer
feedback

You just want a link to Java?

http://www.java.com/en/download/inc/windows%5Fupgrade%5Fxpi.jsp

Try the NetBeans IDE

http://www.netbeans.org/

if you want to write your own Java programs and run them.

link|improve this answer
feedback

If you go here, you will a development tool called Eclipse. I can't remember if it includes the Java SDK, if it doesn't then just go to the main Sun website and download from there.

link|improve this answer
feedback

First of all, you should check whether or not you already have Java installed by going to this page: http://www.java.com/en/download/help/testvm.xml

If you still need Java, then install the Java Runtime Environment, often called the JRE, from here:

http://www.java.com/en/download/index.jsp

Don't worry about other forms of Java such as J2ME or the Java SDK (JDK) since these are for programmers. Once you have Java installed, if you are on Windows, check your control panel for Java settings in case you want to tweak things.

If you are wondering about Java Webstart, that is now included in the JRE http://java.com/en/download/faq/5000070700.xml

link|improve this answer
feedback