//字节数组转16进制字符串
private static string byteToHexStr(byte[] bytes,int length)
{
string returnStr = "";
if (bytes != null)
{
for (int i = 0; i < length; i++)
{
returnStr += bytes[i].ToString("X2");
}
}
return returnStr;
}