int a = (char)'a';
char b = (char)97;
how about this?

解决方案 »

  1.   

    转换成String呢?有直接的么?
      

  2.   

    what is your meaning? I do not understand.
    ASCII to string? or 字符 to string?
    int a = (char)'a';
    char b = (char)97;
    String s = "" + a;
    or 
    String s = "" + b
      

  3.   

    很简单:
    String类的构造函数里有用ASCII字符串构造String对象的构造函数,即用byte{}数组构造String,生成的Sting串就是unicode字符串