(C#)把一个byte数组转换成一个二进制流!
DPFP.TemplateTemplate;byte[]fingerPrintBytes=null;Templates.Serialize(reffingerPrintB...
DPFP.Template Template;
byte[] fingerPrintBytes =null;
Templates.Serialize(ref fingerPrintBytes);
我上面的fingerPrintBytes已经获取了数组数据,接着我上面的东西,怎么把fingerPrintBytes转成一个二进制流?
以及转换回来成DPFP.Template的方法!
或者还有其他更好的方法。。。? 提供满意答案者加分!
public class Template : Data
{
public Template();
public Template(Stream DataStream);
}
---------------------------------------------------------
public abstract class Data
{
protected byte[] _Data;
public Data();
public Data(Stream DataStream);
public byte[] Bytes { get; }
public int Size { get; }
public void DeSerialize(byte[] ArrayOfBytes);
public void DeSerialize(Stream DataStream);
public byte[] Serialize(ref byte[] ArrayOfBytes);
public Stream Serialize(Stream DataStream);
} 展开
byte[] fingerPrintBytes =null;
Templates.Serialize(ref fingerPrintBytes);
我上面的fingerPrintBytes已经获取了数组数据,接着我上面的东西,怎么把fingerPrintBytes转成一个二进制流?
以及转换回来成DPFP.Template的方法!
或者还有其他更好的方法。。。? 提供满意答案者加分!
public class Template : Data
{
public Template();
public Template(Stream DataStream);
}
---------------------------------------------------------
public abstract class Data
{
protected byte[] _Data;
public Data();
public Data(Stream DataStream);
public byte[] Bytes { get; }
public int Size { get; }
public void DeSerialize(byte[] ArrayOfBytes);
public void DeSerialize(Stream DataStream);
public byte[] Serialize(ref byte[] ArrayOfBytes);
public Stream Serialize(Stream DataStream);
} 展开
2个回答
展开全部
首先 byte[] 就是二进制流的。
你的意思是不是转换成二进制字符串?
将fingerPrintBytes 代入 bytesTest
strResult就是二进制字符串
//byte[]转为二进制字符串表示
byte[] bytesTest =new byte[]{16,18,33};
string strResult=string.Empty;
string strTemp;
for(int i=0;i<bytesTest.Length;i++)
{
strTemp=System.Convert.ToString(bytesTest[i], 2);
strTemp =strTemp.Insert(0,new string('0',8-strTemp.Length));
strResult+=strTemp;
}
你的意思是不是转换成二进制字符串?
将fingerPrintBytes 代入 bytesTest
strResult就是二进制字符串
//byte[]转为二进制字符串表示
byte[] bytesTest =new byte[]{16,18,33};
string strResult=string.Empty;
string strTemp;
for(int i=0;i<bytesTest.Length;i++)
{
strTemp=System.Convert.ToString(bytesTest[i], 2);
strTemp =strTemp.Insert(0,new string('0',8-strTemp.Length));
strResult+=strTemp;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询