当前位置:首页 > PHP教程 > php高级应用 > 列表

java模拟PHP的pack和unpack类

发布:smiling 来源: PHP粉丝网  添加日期:2019-09-29 16:50:37 浏览: 评论:0 

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

  1. package qghl.intp.util; 
  2.  
  3.    
  4.  
  5. import java.io.IOException; 
  6.  
  7. import java.io.InputStream; 
  8.  
  9.    
  10.  
  11. public class PackUtil{ 
  12.  
  13.    
  14.  
  15.     /** 
  16.  
  17.      * 打包字符串 
  18.  
  19.      * 类似php中pack在java中的实现 
  20.  
  21.      * 
  22.  
  23.      * @param str 
  24.  
  25.      * @return 
  26.  
  27.      */ 
  28.  
  29.     public static byte[] pack(String str) { 
  30.  
  31.       int nibbleshift = 4; 
  32.  
  33.       int position = 0; 
  34.  
  35.       int len = str.length() / 2 + str.length() % 2; 
  36.  
  37.       byte[] output = new byte[len]; 
  38.  
  39.       for (char v : str.toCharArray()) { 
  40.  
  41.         byte n = (byte) v; 
  42.  
  43.         if (n >= '0' && n <= '9') { 
  44.  
  45.           n -= '0'
  46.  
  47.         } else if (n >= 'A' && n <= 'F') { 
  48.  
  49.           n -= ('A' - 10); 
  50.  
  51.         } else if (n >= 'a' && n <= 'f') { 
  52.  
  53.           n -= ('a' - 10); 
  54.  
  55.         } else { 
  56.  
  57.           continue
  58.  
  59.         } 
  60.  
  61.         output[position] |= (n << nibbleshift); 
  62.  
  63.    
  64.  
  65.         if (nibbleshift == 0) { 
  66.  
  67.           position++; 
  68.  
  69.         } 
  70.  
  71.         nibbleshift = (nibbleshift + 4) & 7; 
  72.  
  73.       } 
  74.  
  75.    
  76.  
  77.       return output; 
  78.  
  79.     } 
  80.  
  81.    
  82.  
  83.     /** 
  84.  
  85.      * 16进制的字符解压 类php中unpack 
  86.  
  87.      * 
  88.  
  89.      * @param is 
  90.  
  91.      * @param len 
  92.  
  93.      * @return 
  94.  
  95.      * @throws IOException 
  96.  
  97.      */ 
  98.  
  99.     public static String unpack(InputStream is, int len) throws IOException { 
  100.  
  101.       byte[] bytes = new byte[len]; 
  102.  
  103.       is.read(bytes); 
  104.  
  105.       return unpack(bytes); 
  106.  
  107.     } 
  108.  
  109.    
  110.  
  111.     /*** 
  112.  
  113.      * 16进制的字符解压 类php中unpack 
  114.  
  115.      * @param bytes 
  116.  
  117.      * @return 
  118.  
  119.      */ 
  120.  
  121.     public static String unpack(byte[] bytes) { 
  122.  
  123.       StringBuilder stringBuilder = new StringBuilder(""); 
  124.  
  125.       if (bytes == null || bytes.length <= 0) { 
  126.  
  127.         return null; 
  128.  
  129.       } 
  130.  
  131.       for (int i = 0; i < bytes.length; i++) { 
  132.  
  133.         int v = bytes[i] & 0xFF; 
  134.  
  135.         String hv = Integer.toHexString(v); 
  136.  
  137.         if (hv.length() < 2) { 
  138. //phpfensi.com 
  139.           stringBuilder.append(0); 
  140.  
  141.         } 
  142.  
  143.         stringBuilder.append(hv); 
  144.  
  145.       } 
  146.  
  147.       return stringBuilder.toString(); 
  148.  
  149.     } 
  150.  
  151.   } 

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

Tags: java pack unpack

分享到: