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

JEditorPane.read(InputStream, Object) works wrong for Cp037

XMLWordPrintable



      Name: dsC58869 Date: 01/18/2000


      The method
      public void javax.swing.JEditorPane.read(InputStream in, Object desc)
      throws wrong IOException for Cp037 character encoding.

      Here is a minimized test:
      import java.io.*;
      import javax.swing.*;

      public class JEditorPaneTest01 {
          public static void main (String[] args) {
              JEditorPane editor = new JEditorPane();
              String str = "Test string";
              ByteArrayInputStream bais = new ByteArrayInputStream(str.getBytes());
              try {
                  editor.read(bais, (Object) null);
              } catch (Exception e) {
                  e.printStackTrace();
              }
              if(editor.getText().equals(str)) {
                  System.out.println("OKAY");
              } else {
                  System.out.println("Failed");
              }
          }
      }

      --- Output: ---
      %echo $LANG
      C
      %java -version
      java version "1.3.0rc1"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0rc1-S)
      Java HotSpot(TM) Client VM (build 1.3.0rc1-S, interpreted mode)
      %java -Dfile.encoding=Cp037 JEditorPaneTest01
      Ëüëôàä§
      %

      It means (converted from Cp037 to ASCII):
      Failed

      ======================================================================

            apikalev Andrey Pikalev
            sdasunw Sda Sda (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: