-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
1.3.0
-
sparc
-
solaris_2.5
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
======================================================================
- relates to
-
JDK-4306753 JEditorPane cannot display non ISO-8859-1 characters in HTML with frames
-
- Closed
-