-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
1.1.7
-
x86
-
windows_95
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)
======================================================================
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)
======================================================================