首页 > 语言 > PHP > 正文

java模拟PHP的pack和unpack类

2024-05-04 23:45:01
字体:
来源:转载
供稿:网友

这篇文章主要介绍了java模拟PHP的pack和unpack类的相关资料,需要的朋友可以参考下

本文实例为大家分享了java模拟PHP的pack和unpack类的具体代码,供大家参考,具体内容如下
 

  1. package qghl.intp.util; 
  2.   
  3. import java.io.IOException; 
  4. import java.io.InputStream; 
  5.   
  6. public class PackUtil{ 
  7.   
  8.     /** 
  9.      * 打包字符串 
  10.      * 类似php中pack在java中的实现 
  11.      * 
  12.      * @param str 
  13.      * @return 
  14.      */ 
  15.     public static byte[] pack(String str) { 
  16.       int nibbleshift = 4; 
  17.       int position = 0; 
  18.       int len = str.length() / 2 + str.length() % 2; 
  19.       byte[] output = new byte[len]; 
  20.       for (char v : str.toCharArray()) { 
  21.         byte n = (byte) v; 
  22.         if (n >= '0' && n <= '9') { 
  23.           n -= '0'
  24.         } else if (n >= 'A' && n <= 'F') { 
  25.           n -= ('A' - 10); 
  26.         } else if (n >= 'a' && n <= 'f') { 
  27.           n -= ('a' - 10); 
  28.         } else { 
  29.           continue
  30.         } 
  31.         output[position] |= (n << nibbleshift); 
  32.   
  33.         if (nibbleshift == 0) { 
  34.           position++; 
  35.         } 
  36.         nibbleshift = (nibbleshift + 4) & 7; 
  37.       } 
  38.   
  39.       return output; 
  40.     } 
  41.   
  42.     /** 
  43.      * 16进制的字符解压 类php中unpack 
  44.      * 
  45.      * @param is 
  46.      * @param len 
  47.      * @return 
  48.      * @throws IOException 
  49.      */ 
  50.     public static String unpack(InputStream is, int len) throws IOException { 
  51.       byte[] bytes = new byte[len]; 
  52.       is.read(bytes); 
  53.       return unpack(bytes); 
  54.     } 
  55.   
  56.     /*** 
  57.      * 16进制的字符解压 类php中unpack 
  58.      * @param bytes 
  59.      * @return 
  60.      */ 
  61.     public static String unpack(byte[] bytes) { 
  62.       StringBuilder stringBuilder = new StringBuilder(""); 
  63.       if (bytes == null || bytes.length <= 0) { 
  64.         return null; 
  65.       } 
  66.       for (int i = 0; i < bytes.length; i++) { 
  67.         int v = bytes[i] & 0xFF; 
  68.         String hv = Integer.toHexString(v); 
  69.         if (hv.length() < 2) { 
  70.           stringBuilder.append(0); 
  71.         } 
  72.         stringBuilder.append(hv); 
  73.       } 
  74.       return stringBuilder.toString(); 
  75.     } 
  76.   } 

以上就是本文的全部内容,希望对大家学习java程序设计有所帮助。


注:相关教程知识阅读请移步到PHP教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选