close
public static String toHex(byte b){
return (""+"0123456789abcdef".charAt(0xf&b>>4)+"0123456789abcdef".charAt(b&0xf));
}
說明:
此為以查表方式進行編碼轉換
來源:
JavaWorld 討論串
return (""+"0123456789abcdef".charAt(0xf&b>>4)+"0123456789abcdef".charAt(b&0xf));
}
說明:
此為以查表方式進行編碼轉換
來源:
JavaWorld 討論串
全站熱搜
留言列表