Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-5089823

Java.Util.Properties.list() truncates values > 40 characters

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • 1.4.2
    • core-libs
    • x86
    • windows_98



      Name: js151677 Date: 08/20/2004


      FULL PRODUCT VERSION :
      java version "1.4.2_05"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
      Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)


      ADDITIONAL OS VERSION INFORMATION :
      Windows 98 Second Edition

      A DESCRIPTION OF THE PROBLEM :
      The Properties.list() method methods truncates properties which are longer than 40 characters and appends them with an ellipses.
      The external directories (java.ext.dirs), library directories (java.library.paths), and other properties which are critical runtime properties which specify path information are all truncated.

       The documentation for the two list() methods says the methods are "useful for debugging", but incomplete information is not useful for debugging.

      The source for the list methods in /java/util/Properties.java contains an "if" clause that makes the decision to truncate property values longer than 40 characters. Also, an internal enumerator class is used.

      I used the following code to correctly display the properties instead of using list():

              Properties props = System.getProperties();
              //props.list(System.out);
              for (Enumeration k = props.keys() ; k.hasMoreElements() ;) {
                  for (Enumeration e = props.elements() ; e.hasMoreElements() ;) {
                      System.out.println(k.nextElement() + " = " + e.nextElement());
                  }
              }

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
       java.runtime.name = Java(TM) 2 Runtime Environment, Standard Edition
      sun.boot.library.path = C:\PROGRAM FILES\J2SDK_NB\J2SDK1.4.2\JRE\bin
      java.vm.version = 1.4.2-b28
      java.vm.vendor = Sun Microsystems Inc.
      java.vendor.url = http://java.sun.com/
      path.separator = ;
      java.vm.name = Java HotSpot(TM) Client VM
      file.encoding.pkg = sun.io
      user.country = US
      sun.os.patch.level = A
      java.vm.specification.name = Java Virtual Machine Specification
      user.dir = C:\TOOLS
      java.runtime.version = 1.4.2-b28
      java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment
      java.endorsed.dirs = C:\PROGRAM FILES\J2SDK_NB\J2SDK1.4.2\JRE\lib\endorsed
      os.arch = x86
      java.io.tmpdir = c:\windows\templine.separator =

      java.vm.specification.vendor = Sun Microsystems Inc.
      user.variant =
      os.name = Windows 98
      sun.java2d.fontpath =
      java.library.path = C:\PROGRAM FILES\J2SDK_NB\J2SDK1.4.2\BIN;.;C:\WINDOWS\SYSTEM;C:\WINDOWS;C:\WINDOWS;C:\WINDOWS\SYSTEM;C:\WINDOWS\COMMAND;C:\PROGRA~1\J2SDK_NB\J2SDK1~1.2\BIN;C:\BAT;C:\TOOLS;C:\DOS;C:\PROGRA~1\WIN98RK;C:\PROGRA~1\MICROS~7\COMMON\MSDEV98\BIN;C:\PROGRA~1\MICROS~7\VC98\BIN;C:\PROGRA~1\MICROS~7\COMMON\TOOLS\WIN95;C:\PROGRA~1\MICROS~7\COMMON\TOOLS;
      ACTUAL -
      JAVA SYSTEM PROPERTIES
      ----------------------
      Line separator = Carriage Return + Line Feed (X'0D0A')
      java.runtime.name = Java(TM) 2 Runtime Environment, Standard Edition
      sun.boot.library.path = C:\PROGRAM FILES\J2SDK_NB\J2SDK1.4.2\JRE\bin
      java.vm.version = 1.4.2-b28
      java.vm.vendor = Sun Microsystems Inc.
      java.vendor.url = http://java.sun.com/
      path.separator = ;
      java.vm.name = Java HotSpot(TM) Client VM
      file.encoding.pkg = sun.io
      user.country = US
      sun.os.patch.level = A
      java.vm.specification.name = Java Virtual Machine Specification
      user.dir = C:\TOOLS
      java.runtime.version = 1.4.2-b28
      java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment
      java.endorsed.dirs = C:\PROGRAM FILES\J2SDK_NB\J2SDK1.4.2\JRE\lib\endorsed
      os.arch = x86
      java.io.tmpdir = c:\windows\templine.separator =

      java.vm.specification.vendor = Sun Microsystems Inc.
      user.variant =
      os.name = Windows 98
      sun.java2d.fontpath =
      java.library.path = C:\PROGRAM FILES\J2SDK_NB\J2SDK1.4.2\BIN;.;C:\W...
      .
      .
      .


      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.util.*;
      import java.io.*;

      public class Javaprops {

          static public void main(String args[]) {
              /* Get a properties list and list it */
              Properties props = System.getProperties();
              props.list(System.out);
              //for (Enumeration k = props.keys() ; k.hasMoreElements() ;) {
              // for (Enumeration e = props.elements() ; e.hasMoreElements() ;) {
              // System.out.println(k.nextElement() + " = " + e.nextElement());
              // }
              //}
          }
      }
      ---------- END SOURCE ----------

      CUSTOMER SUBMITTED WORKAROUND :
      import java.util.*;
      import java.io.*;

      public class Javaprops {

          static public void main(String args[]) {
              /* Get a properties list and list it */
              Properties props = System.getProperties();
              //props.list(System.out);
             /for (Enumeration k = props.keys() ; k.hasMoreElements() ;) {
                  for (Enumeration e = props.elements() ; e.hasMoreElements() ;) {
                      System.out.println(k.nextElement() + " = " + e.nextElement());
                  }
              }
          }
      }
      (Incident Review ID: 297663)
      ======================================================================

            sseligmasunw Scott Seligman (Inactive)
            jssunw Jitender S (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: