Difference between revisions of "Install Java"

(Added instructions to download the JDK for PCs)
Line 1: Line 1:
Java Virtual Machine (JVM) is the part of the Java software platform that executes Java code. It is a program which executes certain other programs, namely those containing Java bytecode instructions. To compile Java code, you need to have some version of JVM installed.
+
Java Virtual Machine (JVM) is the part of the Java software platform that executes Java code. It is a program which executes certain other programs, namely those containing Java bytecode instructions. To compile Java code, you need to have some version of JVM installed. You'll also require the JDK (Java Development Kit).
  
Java is most likely preinstalled on your computer, unless you are using Mac OS X 10.8 (Mountain Lion).  
+
Java is most likely preinstalled on your computer, unless you are using Mac OS X 10.8 (Mountain Lion). It is likely, however, that you will not have the JDK installed.
  
 
=Mac install instructions=
 
=Mac install instructions=
  
 
Open a Terminal window (click on Applications -> Utilities -> Terminal from the dock).  Then type "java -version" at the prompt.  If it return with something like "java version "1.6.0_35"", then Java is already installed and you don't have to do anything else.  Otherwise, it should pop up a window to install Java.  Click the "Install" button to install Java.
 
Open a Terminal window (click on Applications -> Utilities -> Terminal from the dock).  Then type "java -version" at the prompt.  If it return with something like "java version "1.6.0_35"", then Java is already installed and you don't have to do anything else.  Otherwise, it should pop up a window to install Java.  Click the "Install" button to install Java.
 +
 +
=PC install instructions=
 +
Go to http://www.oracle.com/technetwork/java/javase/downloads/index.html. Click the "Download" button under the box labeled "Java" (the first of the three; the other two are JavaFX and Netbeans).
 +
 +
Scroll to the section labeled "Java SE Development Kit 7u7". Click the radio button to "accept license agreement". There are two versions of the JDK for Windows. "Windows x86" is for 32-bit machines; "Windows 64" is for 64-bit machines. Choose the appropriate link for your machine. (See the "Install Eclipse" page for how to tell which one you are.)
 +
 +
Once the executable is downloaded, you can run it. Just accept the defaults for all choices.

Revision as of 09:53, 30 September 2012

Java Virtual Machine (JVM) is the part of the Java software platform that executes Java code. It is a program which executes certain other programs, namely those containing Java bytecode instructions. To compile Java code, you need to have some version of JVM installed. You'll also require the JDK (Java Development Kit).

Java is most likely preinstalled on your computer, unless you are using Mac OS X 10.8 (Mountain Lion). It is likely, however, that you will not have the JDK installed.

Mac install instructions

Open a Terminal window (click on Applications -> Utilities -> Terminal from the dock). Then type "java -version" at the prompt. If it return with something like "java version "1.6.0_35"", then Java is already installed and you don't have to do anything else. Otherwise, it should pop up a window to install Java. Click the "Install" button to install Java.

PC install instructions

Go to http://www.oracle.com/technetwork/java/javase/downloads/index.html. Click the "Download" button under the box labeled "Java" (the first of the three; the other two are JavaFX and Netbeans).

Scroll to the section labeled "Java SE Development Kit 7u7". Click the radio button to "accept license agreement". There are two versions of the JDK for Windows. "Windows x86" is for 32-bit machines; "Windows 64" is for 64-bit machines. Choose the appropriate link for your machine. (See the "Install Eclipse" page for how to tell which one you are.)

Once the executable is downloaded, you can run it. Just accept the defaults for all choices.