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

Print{Stream,Writer} classes display characters incorrectly (win)

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: P4 P4
    • None
    • 8.1ur1, 1.1.6, 1.2.0, 1.4.0
    • core-libs
    • x86
    • windows_95, windows_2000

      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);

        }

       }




      ======================================================================

            sherman Xueming Shen
            miflemi Mick Fleming
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: