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

1.1: -Dfile.encoding does not work with HOTSPOT and JAVA2 (1.2.1)

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P1 P1
    • 1.1
    • 1.0
    • hotspot
    • alpha
    • x86
    • windows_95

      Name: mc57594 Date: 05/31/99

      Bug observed on Win 95 and NT, but not Solaris.

      I generated a class which just prints the default file Encoding
      classes used by the sun.io ByteToCharConverter and CharToByteConverter classes.

      package com.gil.test;
      import sun.io.*;
      public class Encoding
      {
         /**
          * Encoding constructor comment.
          */
         public Encoding() {
         }
         /**
          * This method was created in VisualAge.
          * @param args java.lang.String[]
          */
         public static void main(String args[])
         {
          System.out.println("Default ByteToChar Class >>'" + sun.io.ByteToCharConverter.getDefault().getClass().getName() + "'");
          System.out.println("Default CharToByte Class >>'" + sun.io.CharToByteConverter.getDefault().getClass().getName() + "'");
         }
      }

      if I execute the above class and set the file encoding on the command line:

      java -Dfile.encoding=8859_1 -cp . com.gil.test.Encoding

      I get the following output:

      Default ByteToChar Class >>'sun.io.ByteToCharCp1252'
      Default CharToByte Class >>'sun.io.CharToByteCp1252'

      If I use the -classic option, to not use Hotspot I get:

      Default ByteToChar Class >>'sun.io.ByteToCharISO8859_1'
      Default CharToByte Class >>'sun.io.CharToByteISO8859_1'

      So it appears that the file encoding does not get set when
      using hotspot.
      (Review ID: 83242)
      ======================================================================

            rschmidtsunw Rene Schmidt (Inactive)
            mchamnessunw Mark Chamness (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: