How to install java (jdk-74) on solaris 10?

What kind of required java type for installed?
which address link, i need to download the package.
i have zcat this version jdk-7-solaris-sparc.tar.Z and then installed each the packages with pkgadd -d . , but my java version still java full version "1.5.0_24-b02".is it need doanything after installed each package??
any body know can explained, how to step by step installed the java.? many thx b4

Are you going to upgrade your JRE?
Hope this will help you

Download

  1. Go to java site
  2. Click on Free Java Download button.
    The Solaris Manual Downloads page appears
  3. Download the SPARC 32 Bit/x86 package by clicking on the Download button.
    You can download the file to any of the directories on your system.
  4. After downloading, verify that the:
    For SPARC 32 bit
    [list]
  5. Name of the file is jre-7u<version>-solaris-sparc.sh
    [/list]
    For x86
    [list]
  6. Name of the file is jre-7u<version>-solaris-i586.sh
    [/list]

Install

Java comes in the form of a self-extracting binary file. Follow the instructions below to install Java:

  1. Change to the directory in which you have downloaded. Type:
    cd <directory path name>
    For example, if you have downloaded the file to /tmp directory, type:
    cd /tmp
  2. Make sure that execute permissions are set on the self-extracting binary:
    On SPARC 32 bit:
    chmod +x jre-7u<version>-solaris-sparc.sh
    where <version> is to be replaced by the version downloaded.
    Example: For jre-7u3, the command is
    chmod +x jre-7u3-solaris-sparc.sh
    On x86:
    chmod +x jre-7u<version>-solaris-i586.sh
    where <version> is to be replaced by the version downloaded.
    Example: For jre-7u3, the command is
    chmod +x jre-7u3-solaris-i586.sh
  3. Change directory to the location where you want to install. Type:
    cd <directory path name> For example, to install the software in the /usr/java directory, type:
    cd /usr/java
  4. Run the self-extracting binary. For example,
    On SPARC 32 bit:
    /tmp/jre-7u<version>-solaris-sparc.sh
    On x86:
    /tmp/jre-7u<version>-solaris-i586.sh
    The binary license agreement is displayed. Read through the agreement. Press the spacebar to display the next page. At the end, enter yes to proceed with the installation.

  1. The files are installed in the jre1.7.0 sub-directory under the current directory.
    Note: Java Plug-in and Java Web Start are automatically installed with Java.

Enable and Configure

Once the installation is complete, ensure that you enable and configure Java to run applets in your browser.
Steps to Enable Java for the browser:

  1. Go to the plugins sub-directory under Mozilla installation directory. Type:
    cd <Firefox installation directory>/plugins
  2. In the current directory, create a symbolic link to Java libnpjp2.so file by typing:
    For SPARC 32 bit
    ln -s <Java installation directory>/lib/sparc/libnpjp2.so .
    For x86
    ln -s <Java installation directory>/lib/sparc/i386/libnpjp2.so .

    Note: Be sure to include the period (.) at the end.

    Example:
    If Mozilla is installed in this directory:
    /usr/lib/mozilla-1.4/

    and if Java is installed in this directory:
    /usr/java/jre7u3
    Then type at the terminal to go to the browser plug-in directory:
    cd /usr/lib/mozilla-1.4/plugins
    Enter the following command to create a symbolic link to Java Plug-in for the Mozilla browser.
    ln -s /usr/java/jre1.7.0_u<version>/lib/libnpjp2.so .
  3. Start Mozilla browser or restart if it is already running. Note that if you have other Mozilla components (ie: Messenger, Composer, etc) running, you will need to restart them as well.
  4. Go to Edit > Preferences.
  5. Under Advanced category > Select Enable Java.
    Java is now enabled for the browser.