java byte型数组和16进制字符串互相转化方法

public static String printHexString( byte[] b) {
  String result="";
     for (int i = 0; i < b.length; i++) {
       String hex = Integer.toHexString(b[i] & 0xFF);
       if (hex.length() == 1) {
         hex = '0' + hex;
       }
       result=result+hex.toUpperCase();
     }
     return result;

 }


public static byte[] hexStringToBytes(String hexString) {    
   if (hexString == null || hexString.equals("")) {    
       return null;    
   }    
   hexString = hexString.toUpperCase();    
   int length = hexString.length() / 2;    
   char[] hexChars = hexString.toCharArray();    
   byte[] d = new byte[length];    
   for (int i = 0; i < length; i++) {    
       int pos = i * 2;    
       d[i] = (byte) (charToByte(hexChars[pos]) << 4 | charToByte(hexChars[pos + 1]));    
   }    
   return d;    
}  

private static byte charToByte(char c) {    
   return (byte) "0123456789ABCDEF".indexOf(c);    
}   

你可能感兴趣的:(java,c,String,null,byte,hex)