ASCII转换Unicode求详解
[code=Java][/code]
import java.io.*;
public class Input {
public static void main(String[] args) throws
IOException{
byte buf[]=new byte[20];
try{
System.in.read(buf);
}catch(IOException e){
System.out.println(e.toString());[color=#FF0000][/color]这行tostring怎么解释啊?
}
String str=new String(buf,0);
System.out.println(str);
}
}
书上的代码 求详细解释!!!
------解决方案--------------------因为...发完你会认真去思考.怕别人讨论说错.
------解决方案--------------------那就分享一下了 接分来了
------解决方案--------------------你这有转换吗,没看出来
------解决方案--------------------说实话,我看到ascii 转 unicode 的时候 震精了,LZ好强大