home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 October / PCO1097.ISO / FilesBBS / WIN95 / IAVAZIP.EXE / DATA.Z / changes < prev    next >
Encoding:
Text File  |  1997-05-21  |  6.6 KB  |  166 lines

  1.                              CHANGES
  2.  
  3.                     Java(tm) Runtime Environment
  4.                           JRE(tm) 1.1.2
  5.  
  6. -----------------------------------------------------------------------
  7. CONTENTS
  8. -----------------------------------------------------------------------
  9. This document describes the changes made to the JRE between versions 
  10. 1.1.1 and 1.1.2. The contents of this document are as follows:
  11.  
  12.    - End-user installation capability for the Win32 JRE
  13.    - Win32 JRE available with or without internationalization files 
  14.    - New jre tool  
  15.    - Early-access release of the JRE for Solaris x86
  16.  
  17.     ---------------------------------------------------------
  18.     NOTE: To find the JRE version number, execute:
  19.           jre -version
  20.     ---------------------------------------------------------
  21.  
  22.  
  23. =======================================================================
  24. END-USER INSTALLATION CAPABILITY FOR THE Win32 JRE
  25. -----------------------------------------------------------------------
  26.  
  27. When the Win32 JRE 1.1.2 is downloaded, an InstallShield script is 
  28. invoked that automates the installation of the JRE. The feature was not 
  29. present in the 1.1.1 version of the JRE. With the InstallShield script, 
  30. JRE 1.1.2 is suitable for installation by end-users. Because of this 
  31. end-user installation capability of the Win 32 JRE 1.1.2, Java 
  32. application developers have the option of not bundling the JRE with 
  33. their software. Instead, they can direct end-users to download and 
  34. install the JRE themselves.
  35.  
  36. An installer is not available for Solaris versions of the JRE. 
  37. Therefore it is recommended that Solaris application developers write 
  38. their own installers and bundle the JRE and installer with their 
  39. software.
  40.  
  41.  
  42. =======================================================================
  43. Win32 JRE AVAILABLE WITH OR WITHOUT INTERNATIONALIZATION FILES
  44. -----------------------------------------------------------------------
  45.  
  46. JRE 1.1.2 for Win32 is available for download in two versions, one 
  47. containing internationalization files and the other without. The 
  48. version of the JRE with the internationalization files is more than 
  49. twice the size of the version without the internationalization files. 
  50. The smaller version is made available for those end users who have no 
  51. need for internationalization capability. The files not contained in 
  52. the smaller version of the Win32 JRE are those listed in the OPTIONAL 
  53. FILES section of the JRE README file.
  54.  
  55. Solaris versions of JRE 1.1.2 include internationalization files. 
  56.  
  57.  
  58. =======================================================================
  59. NEW jre TOOL
  60. -----------------------------------------------------------------------
  61.  
  62. This section provides a summary of the new jre tool for both Win32 and 
  63. Solaris. More detailed documentation for the jre tool can be found on 
  64. the JavaSoft web site.
  65.  
  66. The jre tool invokes the Java Runtime interpreter for executing Java 
  67. applications. The tool is available in the Win32, Solaris-Sparc, and 
  68. Solaris x86 downloads of JRE 1.1.2. The syntax for the jre command is:
  69.  
  70.     jre [ options ] classname <args>
  71.  
  72. The classname argument is the name of the class file to be 
  73. executed. Any arguments to be passed to the class must be placed 
  74. after the classname on the command line.
  75.  
  76. An alternative version of the tool, jrew, is available for Win32. The 
  77. jrew command is identical to jre, except that a console window is not 
  78. invoked. The syntax of the jrew command is 
  79.  
  80.     jrew [ options ] classname <args>
  81.  
  82. Options for the jre and the jrew commands are as follows:
  83.  
  84.    -classpath path    Specifies the path that jre uses to 
  85.                look up classes. Overrides the default 
  86.                classpath.  
  87.  
  88.    -cp path        Prepends the specified path to the default 
  89.                classpath that jre uses to look up classes. 
  90.  
  91.  
  92.    -help        Print a usage message.
  93.  
  94.    -mx x        Sets the maximum size of the memory allocation 
  95.                pool (the garbage collected heap) to x. The 
  96.                default is 16 megabytes of memory. x must be
  97.             greater than or equal to 1000 bytes.
  98.  
  99.    -ms x        Sets the startup size of the memory allocation 
  100.                pool (the garbage collected heap) to x. The 
  101.                default is 1 megabyte of memory. x must be
  102.             greater than 1000 bytes.
  103.  
  104.    -noasyncgc        Turns off asynchronous garbage collection. When 
  105.                activated, no garbage collection takes place 
  106.                unless it is explicitly called or the program 
  107.             runs out of memory.
  108.  
  109.    -noclassgc        Turns off garbage collection of Java classes. 
  110.                By default, the Java interpreter reclaims space 
  111.                for unused Java classes during garbage collection.
  112.  
  113.    -nojit        Specifies that any JIT compiler should be ignored.  
  114.                The default Java interpreter is invoked.
  115.  
  116.    -ss x        The -ss option sets the maximum stack size that 
  117.                can be used by C code in a thread to x. The 
  118.             default units for x are bytes. The value of x 
  119.             must be greater than or equal to 1000 bytes.
  120.  
  121.    -oss x        The -oss option sets the maximum stack size that 
  122.                can be used by Java code in a thread to x. The 
  123.             default units for x are bytes. The value of x 
  124.             must be greater than or equal to 1000 bytes.
  125.  
  126.    -v, -verbose        Causes jre to print a message to stdout each time 
  127.                a class file is loaded.
  128.  
  129.    -verify        Performs a partial verification of the class file. 
  130.                The -verify option cannot be relied upon to 
  131.                certify the class file.
  132.  
  133.    -verifyremote    Runs the verifier on all code that is loaded into 
  134.                the system via a classloader. verifyremote is the 
  135.                default for the interpreter.
  136.  
  137.    -noverify        Turns verification off.
  138.  
  139.    -verbosegc        Causes the garbage collector to print out messages 
  140.                whenever it frees memory.
  141.    
  142.    -DpropName=value    Defines a property value. propName is the name of 
  143.                the property whose value you want to change and 
  144.                value is the value to change it to. For example, 
  145.                the command java -Dawt.button.color=green ...
  146.             sets the value of the property awt.button.color 
  147.             to "green".
  148.  
  149.  
  150. =======================================================================
  151. EARLY-ACCESS RELEASE OF THE JRE FOR SOLARIS x86
  152. -----------------------------------------------------------------------
  153.  
  154. An early-access release of JRE 1.1.2 for Solaris x86 is available for 
  155. download.  An FCS version of the JRE for Solaris x86 will be made 
  156. available in the future.
  157.  
  158. BECAUSE THE JRE 1.1.2 FOR SOLARIS x86 IS AN EARLY-ACCESS RELEASE ONLY,
  159. IT SHOULD NOT BE USED FOR MISSION-CRITICAL APPLICATIONS.
  160.  
  161. -----------------------------------------------------------------------
  162. Copyright ⌐ 1997 Sun Microsystems, Inc.
  163. 2550 Garcia Ave., Mountain View, CA 94043-1100. USA
  164. All rights reserved.
  165.  
  166.