-
Bug
-
Resolution: Fixed
-
P3
-
1.2.2_005
-
06
-
sparc
-
solaris_2.6
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2033280 | 1.4.0 | Michael Mccloskey | P3 | Resolved | Fixed | beta |
JDK-2033278 | 1.3.1 | Michael Mccloskey | P3 | Resolved | Fixed | 1.3.1 |
JDK-2033277 | 1.3.0_02 | Michael Mccloskey | P3 | Closed | Fixed | 02 |
JDK-2033279 | 1.3.0 | Michael Mccloskey | P3 | Resolved | Fixed | linux-rc1 |
There seems to be a typo in the following source code in
sun.io.CharacterEncoding.java:
The line:
aliasTable.put("iso_8859-1:1978", "ISO8859_1");
should be:
aliasTable.put("iso_8859-1:1987", "ISO8859_1");
Or at least be added...
pat.cashman@Ireland 2000-05-30
The following is the test case to demonstrate the problem.
import java.lang.*;
import java.io.*;
/**************************************************************************
* This application is to verify the bug 4328738 is fixed or not.
* The bug is that Java doesn't accept IANA standard name of "ISO-8859-1"
**************************************************************************/
public class isotest {
public static void main(String[] args) {
String str = new String("ABCDEFG");
try {
// Try IANA standard encoding name for ISO-8859-1
// If bug exists, application will recieve UnsupportedEncodingException
str.getBytes("iso_8859-1:1987");
// originally in test case->str.getBytes("ISO-8859-1:1987"); // but wrong.
System.out.println("Bug is fixed");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
System.err.println("Bug still exists");
}
}
}
sun.io.CharacterEncoding.java:
The line:
aliasTable.put("iso_8859-1:1978", "ISO8859_1");
should be:
aliasTable.put("iso_8859-1:1987", "ISO8859_1");
Or at least be added...
pat.cashman@Ireland 2000-05-30
The following is the test case to demonstrate the problem.
import java.lang.*;
import java.io.*;
/**************************************************************************
* This application is to verify the bug 4328738 is fixed or not.
* The bug is that Java doesn't accept IANA standard name of "ISO-8859-1"
**************************************************************************/
public class isotest {
public static void main(String[] args) {
String str = new String("ABCDEFG");
try {
// Try IANA standard encoding name for ISO-8859-1
// If bug exists, application will recieve UnsupportedEncodingException
str.getBytes("iso_8859-1:1987");
// originally in test case->str.getBytes("ISO-8859-1:1987"); // but wrong.
System.out.println("Bug is fixed");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
System.err.println("Bug still exists");
}
}
}
- backported by
-
JDK-2033278 aliasTable needs "iso_8859-1:1987"
-
- Resolved
-
-
JDK-2033279 aliasTable needs "iso_8859-1:1987"
-
- Resolved
-
-
JDK-2033280 aliasTable needs "iso_8859-1:1987"
-
- Resolved
-
-
JDK-2033277 aliasTable needs "iso_8859-1:1987"
-
- Closed
-