//Test.txt的内容为 好
    //  好  的u码为   \u597D
    //  应该是   186 ,195
    //  或者是   ba  , c3      //在哪里看的,分开存储
    InputStream is = new FileInputStream("Test.txt");
    while ( true )
         {
         String str = "";
             
         readOutInt = is.read();
         str += Integer.toHexString(readOutInt);    //186,并转换成  ba     readOutInt = is.read();
         str += Integer.toHexString(readOutInt);    //195,并转换成 c3   // str = "bac3"         //System.out.println("\u" + str);         //输出 好 , b不能运行         if ( readOutInt = is.read() ) break;       //退出循环 
}