工作上的隨手筆記
public
String toHexString(
byte
[] in){
BigInteger temp =
new
BigInteger(in);
return
temp.toString(
16
);
}
public byte[] fromHexString(String in){ BigInteger temp = new BigInteger(in, 16); return temp.toByteArray(); }
[] fromHexString(String in){
BigInteger(in,
temp.toByteArray();
沒有留言:
張貼留言