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

11x: SJIS converter throws ArrayIndexOutOfBoundsException

XMLWordPrintable

      Name: dbT83986 Date: 02/10/99


      The program below throws ArrayIndexOutOfBoundsException.
      sun.io.MalformedInputException should be thrown?

      import java.io.*;

      public class ConvertFail {
      public static void main(String[] args) {
      byte[] b = new byte[2];
      b[0] = (byte)0xa0;
      b[1] = (byte)0xa0;
      try {
      String str = new String(b, "SJIS");
      } catch(UnsupportedEncodingException e) {}
      }
      }

      java.lang.ArrayIndexOutOfBoundsException: -32
      at sun.io.ByteToCharDoubleByte.getUnicode(ByteToCharDoubleByte.java:162)
      at sun.io.ByteToCharSJIS.getUnicode(ByteToCharSJIS.java:38)
      at sun.io.ByteToCharDoubleByte.convert(Compiled Code)
      at java.lang.String.<init>(String.java:260)
      at java.lang.String.<init>(String.java:294)
      at java.lang.String.<init>(String.java:313)
      at ConvertFail.main(ConvertFail.java:9)
      (Review ID: 48464)
      ======================================================================

            Unassigned Unassigned
            dblairsunw Dave Blair (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: