http://wo13145219.iteye.com/blog/2022667 http://json2csharp.chahuo.com/ using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using …
/** * Hex格式数据转换成十六进制字符串 * @param src */ public void bytesToHexString(byte[] by){ StringBuilder stringBuilder = new StringBuilder(""); for (int i = 0; i < by.length; i++) { int in = by[i] & 0xFF; String str= Integer.toHexString(in); if (st…