mirror of
https://github.com/mamoe/mirai.git
synced 2025-02-25 03:30:15 +08:00
32 lines
669 B
Java
32 lines
669 B
Java
/**
|
|
* @author Him188moe
|
|
*/
|
|
public class NetworkTest {
|
|
public static void main(String[] args) {
|
|
|
|
/*
|
|
System.out.println(Short.valueOf("37 13", 16));
|
|
|
|
System.out.println(1040400290L & 0x0FFFFFFFF);
|
|
System.out.println(Long.valueOf("3E033FA2", 16));
|
|
*/
|
|
|
|
|
|
}
|
|
|
|
|
|
public static String bytesToHex(byte[] bytes) {
|
|
StringBuffer sb = new StringBuffer();
|
|
for(int i = 0; i < bytes.length; i++) {
|
|
String hex = Integer.toHexString(bytes[i] & 0xFF);
|
|
if(hex.length() < 2){
|
|
sb.append(0);
|
|
}
|
|
sb.append(hex);
|
|
}
|
|
return sb.toString();
|
|
}
|
|
|
|
|
|
}
|