byte b = 65;(一) String s=Byte.toString(b); (二) String s=b + ""; (三) String s=new String(new byte[] {b});
確定! 回上一頁