
private string FileTo16X(string File)
{
string tempStr;
FileStream fs = new FileStream(File, FileMode.Open);
int streamLength = (int)fs.Length;
byte[] BTFile = new byte[streamLength];
fs.Read(BTFile, 0, streamLength);
fs.Close();
tempStr= byteToHexStr(BTFile);
return tempStr;
}



by: 发表于:2017-12-18 09:40:11 顶(0) | 踩(0) 回复
??
回复评论