Name: mf23781 Date: 09/01/98
*Symptoms:
In the following testcase, the "\u00e9" does not print correctly (it should
be e-acute) when printed using PrintWriter.
---- Top of File ----
import java.io.*;
public class testacc {
public static void main(java.lang.String s[]){
PrintWriter pout=new PrintWriter(System.out, true);
String data1="\u00e9lan";
String data2="Úlan";
System.out.println(data1);
System.out.println(data2);
System.out.println("---");
pout.println(data1);
pout.println(data2);
}
}
======================================================================
*Symptoms:
In the following testcase, the "\u00e9" does not print correctly (it should
be e-acute) when printed using PrintWriter.
---- Top of File ----
import java.io.*;
public class testacc {
public static void main(java.lang.String s[]){
PrintWriter pout=new PrintWriter(System.out, true);
String data1="\u00e9lan";
String data2="Úlan";
System.out.println(data1);
System.out.println(data2);
System.out.println("---");
pout.println(data1);
pout.println(data2);
}
}
======================================================================
- duplicates
-
JDK-4670764 CP1252 Character is not supported Chars-128-159 broken
-
- Closed
-
-
JDK-4201263 Use proper character encoding in System.out and System.err on Win=
-
- Closed
-