home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jruntime.z / CHANGES.JRE < prev    next >
Text File  |  1997-08-25  |  8KB  |  184 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. =======================================================================
  19. END-USER INSTALLATION CAPABILITY FOR THE Win32 JRE
  20. -----------------------------------------------------------------------
  21.  
  22. When the Win32 JRE 1.1.2 is downloaded, an InstallShield script is 
  23. invoked that automates the installation of the JRE. The feature was not 
  24. present in the 1.1.1 version of the JRE. With the InstallShield script, 
  25. JRE 1.1.2 is suitable for installation by end-users. Because of this 
  26. end-user installation capability of the Win 32 JRE 1.1.2, Java 
  27. application developers have the option of not bundling the JRE with 
  28. their software. Instead, they can direct end-users to download and 
  29. install the JRE themselves.
  30.  
  31. An installer is not available for Solaris versions of the JRE. 
  32. Therefore it is recommended that Solaris application developers write 
  33. their own installers and bundle the JRE and installer with their 
  34. software.
  35.  
  36.  
  37. =======================================================================
  38. Win32 JRE AVAILABLE WITH OR WITHOUT INTERNATIONALIZATION FILES
  39. -----------------------------------------------------------------------
  40.  
  41. JRE 1.1.2 for Win32 is available for download in two versions, one 
  42. containing internationalization files and the other without. The 
  43. version of the JRE with the internationalization files is more than 
  44. twice the size of the version without the internationalization files. 
  45. The smaller version is made available for those end users who have no 
  46. need for internationalization capability. The files not contained in 
  47. the smaller version of the Win32 JRE are those listed in the OPTIONAL 
  48. FILES section of the JRE README file.
  49.  
  50. Solaris versions of JRE 1.1.2 include internationalization files. 
  51.  
  52.  
  53. =======================================================================
  54. NEW jre TOOL
  55. -----------------------------------------------------------------------
  56.  
  57. This section provides a summary of the new jre tool for both Win32 and 
  58. Solaris. The jre tool replaces the java tool in JRE 1.1.2. The jre tool 
  59. is similar to the java tool, but offers only those options that are 
  60. appropriate for a runtime-only system. It also provides the -cp and 
  61. -nojit options that are not part of the java tool. More detailed 
  62. documentation for the jre tool can be found on the JavaSoft web site 
  63. at:
  64.  
  65. For Solaris - 
  66. http://java.sun.com/products/jdk/1.1/docs/tooldocs/solaris/jre.html
  67.  
  68. For Windows - 
  69. http://java.sun.com/products/jdk/1.1/docs/tooldocs/win32/jre.html
  70.  
  71. Source code for the jre tool can be found in the Windows JDK 1.1.2 
  72. directory tree in the jdk1.1.2\demo\jre\win32 folder. For the 
  73. Solaris JDK 1.1.2, source code for the jre tool can be found in 
  74. the jdk1.1.2/demo/jre/solaris directory.
  75.  
  76. The jre tool invokes the Java Runtime interpreter for executing Java 
  77. applications. The tool is available in the Win32, Solaris-Sparc, and 
  78. Solaris x86 downloads of JRE 1.1.2. The syntax for the jre command is:
  79.  
  80.     jre [ options ] classname <args>
  81.  
  82. The classname argument is the name of the class file to be 
  83. executed. Any arguments to be passed to the class must be placed 
  84. after the classname on the command line.
  85.  
  86. An alternative version of the tool, jrew, is available for Win32. The 
  87. jrew command is identical to jre, except that a console window is not 
  88. invoked. The syntax of the jrew command is 
  89.  
  90.     jrew [ options ] classname <args>
  91.  
  92. On Windows platforms, the jre tool will ignore the CLASSPATH 
  93. environment variable. For both Windows and Solaris platforms, the 
  94. -cp option is recommended to specify an application's class path.
  95.  
  96. Options for the jre and the jrew commands are as follows:
  97.  
  98.    -classpath path    Specifies the path that jre uses to 
  99.                look up classes. Overrides the default 
  100.                classpath.  
  101.  
  102.    -cp path        Prepends the specified path to the default 
  103.                classpath that jre uses to look up classes. 
  104.  
  105.    -help        Print a usage message.
  106.  
  107.    -mx x        Sets the maximum size of the memory allocation 
  108.                pool (the garbage collected heap) to x. The 
  109.                default is 16 megabytes of memory. x must be
  110.             greater than or equal to 1000 bytes.
  111.  
  112.    -ms x        Sets the startup size of the memory allocation 
  113.                pool (the garbage collected heap) to x. The 
  114.                default is 1 megabyte of memory. x must be
  115.             greater than 1000 bytes.
  116.  
  117.    -noasyncgc        Turns off asynchronous garbage collection. When 
  118.                activated, no garbage collection takes place 
  119.                unless it is explicitly called or the program 
  120.             runs out of memory.
  121.  
  122.    -noclassgc        Turns off garbage collection of Java classes. 
  123.                By default, the Java interpreter reclaims space 
  124.                for unused Java classes during garbage collection.
  125.  
  126.    -nojit        Specifies that any JIT compiler should be 
  127.             ignored. The default Java interpreter is invoked.
  128.  
  129.    -ss x        The -ss option sets the maximum stack size that 
  130.                can be used by C code in a thread to x. The 
  131.             default units for x are bytes. The value of x 
  132.             must be greater than or equal to 1000 bytes.
  133.  
  134.    -oss x        The -oss option sets the maximum stack size 
  135.             that can be used by Java code in a thread to x. 
  136.             The default units for x are bytes. The value of 
  137.             x must be greater than or equal to 1000 bytes.
  138.  
  139.    -v, -verbose        Causes jre to print a message to stdout each 
  140.             time a class file is loaded.
  141.  
  142.    -verify        Performs byte-code verification on the class 
  143.             file. Beware, however, that java -verify does 
  144.             not perform a full verification in all 
  145.             situations. Any code path that is not actually 
  146.             executed by the interpreter is not verified. 
  147.             Therefore, java -verify cannot be relied upon to 
  148.             certify class files unless all code paths in 
  149.             the class file are actually run.
  150.  
  151.    -verifyremote    Runs the verifier on all code that is loaded 
  152.             into the system via a classloader. verifyremote 
  153.             is the default for the interpreter.
  154.  
  155.    -noverify        Turns verification off.
  156.  
  157.    -verbosegc        Causes the garbage collector to print out 
  158.             messages whenever it frees memory.
  159.    
  160.    -DpropName=value    Defines a property value. propName is the name 
  161.             of the property whose value you want to change 
  162.             and value is the value to change it to. For 
  163.             example, the command 
  164.             java -Dawt.button.color=green ...
  165.             sets the value of the property awt.button.color 
  166.             to "green".
  167.  
  168.  
  169. =======================================================================
  170. EARLY-ACCESS RELEASE OF THE JRE FOR SOLARIS x86
  171. -----------------------------------------------------------------------
  172.  
  173. An early-access release of JRE 1.1.2 for Solaris x86 is available for 
  174. download.  An FCS version of the JRE for Solaris x86 will be made 
  175. available in the future.
  176.  
  177. BECAUSE THE JRE 1.1.2 FOR SOLARIS x86 IS AN EARLY-ACCESS RELEASE ONLY,
  178. IT SHOULD NOT BE USED FOR MISSION-CRITICAL APPLICATIONS.
  179.  
  180. -----------------------------------------------------------------------
  181. Copyright ⌐ 1997 Sun Microsystems, Inc.
  182. 2550 Garcia Ave., Mountain View, CA 94043-1100. USA
  183. All rights reserved.
  184.