(C#)把一个byte数组转换成一个二进制流!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(C#)把一个byte数组转换成一个二进制流!相关的知识,希望对你有一定的参考价值。

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 代入 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;
参考技术A 转换成流
MemoryStream stream = new MemoryStream(fingerPrintBytes);

你的DPFP.Template是什么对象

Java中如何把图片转换成二进制流

Java中将图片转为二进制流只需要使用FileImageInputStream取得图片文件,然后使用ByteArrayOutputStream 写入到二进制流中即可,下面是详细代码:


  //图片到byte数组
  public byte[] image2byte(String path)
    byte[] data = null;
    FileImageInputStream input = null;
    try 
      input = new FileImageInputStream(new File(path));
      ByteArrayOutputStream output = new ByteArrayOutputStream();
      byte[] buf = new byte[1024];
      int numBytesRead = 0;
      while ((numBytesRead = input.read(buf)) != -1) 
      output.write(buf, 0, numBytesRead);
      
      data = output.toByteArray();
      output.close();
      input.close();
    
    catch (FileNotFoundException ex1) 
      ex1.printStackTrace();
    
    catch (IOException ex1) 
      ex1.printStackTrace();
    
    return data;
  

另外,如果需要将byte[]存回图片或转为String,则:

  //byte数组到图片
  public void byte2image(byte[] data,String path)
    if(data.length<3||path.equals("")) return;
    try
    FileImageOutputStream imageOutput = new FileImageOutputStream(new File(path));
    imageOutput.write(data, 0, data.length);
    imageOutput.close();
    System.out.println("Make Picture success,Please find image in " + path);
     catch(Exception ex) 
      System.out.println("Exception: " + ex);
      ex.printStackTrace();
    
  
  //byte数组到16进制字符串
  public String byte2string(byte[] data)
    if(data==null||data.length<=1) return "0x";
    if(data.length>200000) return "0x";
    StringBuffer sb = new StringBuffer();
    int buf[] = new int[data.length];
    //byte数组转化成十进制
    for(int k=0;k<data.length;k++)
      buf[k] = data[k]<0?(data[k]+256):(data[k]);
    
    //十进制转化成十六进制
    for(int k=0;k<buf.length;k++)
      if(buf[k]<16) sb.append("0"+Integer.toHexString(buf[k]));
      else sb.append(Integer.toHexString(buf[k]));
    
    return "0x"+sb.toString().toUpperCase();
  
参考技术A

使用java的IO流对图片进行二进制读取操作即可

示例为:读取图片为二进制流,并写入到其他图片中

static void testCopyImage()
File source=new File("E:\\\\share\\\\Wallpaper\\\\Bliss.jpg");
File desk=new File("d:\\\\images");
if(!desk.exists())
desk.mkdir();


try 
FileInputStream inputStream=new FileInputStream(source);
FileOutputStream outputStream=new FileOutputStream(new File("d:/images/Bliss.jpg"));

int ch=inputStream.read();
while(ch!=-1)
outputStream.write(ch);
ch=inputStream.read();


inputStream.close();
outputStream.close();
System.out.println("图片复制成功!");
 catch (FileNotFoundException e) 
System.out.println("文件不存在:"+e.getMessage());
 catch (IOException e) 
System.out.println("文件读取错误:"+e.getMessage());


参考技术B



我们知道数据库里的Image类型的数据是"二进制数据",因此必须将图像文件转换成字节数组才能存入数据库中。
  //根据文件名(完全路径)
  public byte[] SetImageToByteArray(string fileName)
   FileStream fs = new 
FileStream(fileName, FileMode.Open);
  int streamLength = (int)fs.Length; byte[] image = new 
byte[streamLength];
  fs.Read(image, 0, streamLength);
  fs.Close();
  return image; 
  //另外,在ASP.NET中通过FileUpload控件得到的图像文件可以通过以下方法
  public byte[]
  SetImageToByteArray(FileUpload FileUpload1)
   Stream stream = FileUpload1.PostedFile.InputStream;
  byte[] photo = new byte[FileUpload1.PostedFile.ContentLength];
  stream.Read(photo, 0, FileUpload1.PostedFile.ContentLength);
  stream.Close();
  return photo;
  
  2.从SQL Server数据库读取Image类型的数据,并转换成bytes[]或Image图像文件
  //要使用SqlDataReader要加载using System.Data.SqlClient命名空间
  //将数据库中的Image类型转换成byte[] public byte[] SetImage(SqlDataReader reader)
   return (byte[])reader["Image"];//Image为数据库中存放Image类型字段 
  //将byte[]转换成Image图像类型 //加载以下命名空间using System.Drawing;/using System.IO;
  using System.Data.SqlClient;*/ public Image SetByteToImage(byte[] 
mybyte)
   Image image; MemoryStream mymemorystream = new MemoryStream(mybyte,0, 
mybyte.Length);
  image = Image.FromStream(mymemorystream);
  return image;
  

本回答被提问者和网友采纳

以上是关于(C#)把一个byte数组转换成一个二进制流!的主要内容,如果未能解决你的问题,请参考以下文章

Java中如何把图片转换成二进制流

c#怎么把byte数组转换成图像

C#中Byte转二进制疑问

c#怎么把byte数组转换为字符串

C#中二进制和流之间的各种相互转换

java中如何把一个图片转换成二进制流存入到类中啊?