installing jdk on windows

5
23/9/2014 Installing JDK on Windows » the Open Tutorials http://theopentutorials.com/tutorials/java/installing-jdk-in-windows/ 1/6 Sign In | Register Program the Mind! INSTALLING JDK ON WINDOWS 12 December 2011 By Praveen Macherla 13,471 views 2 Comments Contents [hide] 1 Environment Used 2 Downloading Java Development Kit (JDK): 3 Installing Java Development Kit (JDK): 3.1 Step 1: 3.2 Step 2: 3.3 Step 3: 3.4 Step 4: 3.5 Step 5: 4 Configuring the installed JDK on Windows: 1. Environment Used Java SE 6 Update 29 Windows (XP/Vista/7) OS 2. Downloading Java Development Kit (JDK): You can download latest version of JDK from this location http://www.oracle.com/technetwork/java/javase/downloads/index.html Click on the download link to go to the download page. Table of Contents 1 Environment Used 2 Downloading Java Development Kit (JDK): 3 Installing Java Development Kit (JDK): 3.1 Step 1: 3.2 Step 2: 3.3 Step 3: 3.4 Step 4: 3.5 Step 5: 4 Configuring the installed JDK on Windows: Home Tutorials Examples Contact Us Search... Fix Java Updates java-updates.smartpcfixer.com How To Fix Java Updates. Follow These 3 Easy Steps Now! Tutorials Java 1 FLARES 0 1 0

Upload: ivanenriquetarazonacaceres

Post on 09-Nov-2015

252 views

Category:

Documents


2 download

DESCRIPTION

instalar jdk en sistema operativo windows

TRANSCRIPT

  • 23/9/2014 Installing JDK on Windows the Open Tutorials

    http://theopentutorials.com/tutorials/java/installing-jdk-in-windows/ 1/6

    Sign In | Register

    Program the Mind!

    INSTALLING JDK ON WINDOWS12 December 2011 By Praveen Macherla 13,471 views 2 Comments

    Contents [hide]

    1 Environment Used

    2 Downloading Java Development Kit (JDK):

    3 Installing Java Development Kit (JDK):

    3.1 Step 1:

    3.2 Step 2:

    3.3 Step 3:

    3.4 Step 4:

    3.5 Step 5:

    4 Configuring the installed JDK on Windows:

    1. Environment UsedJava SE 6 Update 29

    Windows (XP/Vista/7) OS

    2. Downloading Java Development Kit (JDK):You can download latest version of JDK from this location

    http://www.oracle.com/technetwork/java/javase/downloads/index.html

    Click on the download link to go to the download page. Table of Contents

    1 Environment Used2 Downloading Java Development Kit (JDK):3 Installing Java Development Kit (JDK):

    3.1 Step 1:3.2 Step 2:3.3 Step 3:3.4 Step 4:3.5 Step 5:

    4 Configuring the installed JDK on Windows:

    Home Tutorials Examples Contact Us Search...

    Fix Java Updatesjava-updates.smartpcfixer.comHow To Fix Java Updates. Follow These 3 Easy Steps Now!

    Tutorials Java

    1FLARES 0 1 0

  • 23/9/2014 Installing JDK on Windows the Open Tutorials

    http://theopentutorials.com/tutorials/java/installing-jdk-in-windows/ 2/6

    Download the JDK suitable for your system requirement (Windows x86 for 32bit windows or Windows

    x64 for 64bit windows) to a safe location on your machine.

    3. Installing Java Development Kit (JDK):3.1. Step 1:

    Double click the downloaded JDK exe file. Click the Next button.

    3.2. Step 2:

    The Custom Setup window allows you to select which parts of the JDK you want to install. If you want

    to change the installation directory click on change and specify the location where jdk will be installed. It is

    recommended to stick with the default settings. Click the Next button.

    3.3. Step 3:

    JDK installing window appears. It will take a few minutes to install the program features of the JDK.

    The Open Tutorials

    + 394

    Follow +1

    Popular Posts

    How to create a Servlet with Eclipse andTomcatAndroid: Custom ListView with Image andText using ArrayAdapterPagination in Servlet and JSPHow to create a simple EJB3 project in Eclipse(JBoss 7.1)Android: Expandable List View ExampleHow to create and consume a simple WebService using JAX WSGenerate Java class from XML Schema usingJAXB 'xjc' commandHow to configure Apache Tomcat in EclipseIDE?How to create a simple Restful Web Serviceusing Jersey JAX RS APIHow to create EJB3 JPA Project in Eclipse(JBoss AS 7.1)

    Recent Comments

    Trancendental on How to create a simpleEJB3 project in Eclipse (JBoss 7.1)rahulmandaliya on Android: Custom ListViewwith Image and Text using ArrayAdapterSumit Kumar on JDBC Oracle ConnectionTutorialhar on JDBC MySQL: Create Database ExampleAre no stub classes indispensable to horde astandalone webservice ? don't we need aserver to horde a webservice? - Zieler Gyanon How to create and consume a simple WebService using JAX WSGuest on How to create a simple EJB3 projectin Eclipse (JBoss 7.1) on Android: Multiple SelectionListViewaz on Android: How to load Image from URLin ImageView?Rohan Doshi on How to get list of InstalledApps in Androidnilesh kumar on Android: Custom ListViewwith Image and Text using ArrayAdapter

    The Open Tutorials

    4,511 people like The Open Tutorials.

    Facebook social plugin

    Like

  • 23/9/2014 Installing JDK on Windows the Open Tutorials

    http://theopentutorials.com/tutorials/java/installing-jdk-in-windows/ 3/6

    3.4. Step 4:

    By installing JDK, JRE will also be installed. Select Java Runtime Environment (JRE) installation location.

    3.5. Step 5:

    When the Complete screen appears, click on the Finish button. Now you have successfully installed

    the Java Development Kit!

    4. Configuring the installed JDK on Windows:The installed JDK must be configured to the windows environment so that the Java compiler (javac) and

    runtime (java) becomes available for compiling and running the Java application from any location on

    Windows.

    NOTE: If JDK is not configured on windows environment then to compile and run your Java applications

    you must place them in /bin/ folder.

  • 23/9/2014 Installing JDK on Windows the Open Tutorials

    http://theopentutorials.com/tutorials/java/installing-jdk-in-windows/ 4/6

    For Windows Vista/7:

    1. Click on Start -> Right click Computer -> Select Properties

    2. Click on Advanced system settings from left side Tasks menu.

    3. Click on Advanced tab and click on Environment Variables.

    NOTE: For earlier Windows version:

    Right click My Computer -> Select Properties -> Advanced tab and click on Environment

    Variables

    4. Select Path variable from System variables and click on Edit and go to the end of the Variable

    Value and place a semi-colon (;) and add \bin path as shown below.

    5. Click OK -> OK -> OK. Now you have successfully configured JDK and ready to develop applications in

    Java.

  • 23/9/2014 Installing JDK on Windows the Open Tutorials

    http://theopentutorials.com/tutorials/java/installing-jdk-in-windows/ 5/6

    Previous Next

    6. Now open Command prompt and type javac -version and it should show the version number which

    you installed.

    javac is the primary Java compiler, included in the Java Development Kit (JDK).

    Also type java -version which is Java runtime included in JDK. Sometimes you may want to restart the

    computer for the PATH settings to take effect.

    Done! If you havent encountered any problems, then the installation and configuration is complete.

    No related posts.

    Tags: install java, install jdk on windows, installing java, installing jdk windows

    Servlet DataSource Resource Injection in Tomcat 5 comments

    Enum Advanced Features 1 comment

    Rules for Developing EJB 3.x Session Beans 1 comment

    Android: Custom ListView with Image and Text usingArrayAdapter 45 comments

    AROUND THE WEB

    ALSO ON THE OPEN TUTORIALS

    WHAT'S THIS?

    Lose Belly Fat With 6Stand-Up Exercises

    Stack Alcohol and EnergyDrinks A DangerousCombo, Study Says

    TheFix.com

    0 Comments The Open Tutorials Login

    Sort by Best Share

    Start the discussion

    Be the first to comment.

    Subscribe Add Disqus to your sited

    Favorite

    ViewsAndroid: Custom ListView with Image andText using ArrayAdapter - 120,579 views

    Recent PostsAndroid Image Gallery using ViewPager

    September 2014M T W T F S S1 2 3 4 5 6 7