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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
  

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

java里怎样把文件转换成二进制?

转换文件成为二进制数据并保存的Java代码:

取出数据并还原文件到本地的java代码:

[java] view plain copy//读取数据库二进制文件  

public void readerJpg() throws SQLException  

  

connection=connectionManager.getconn();//自己连接自己的数据库

String sqlString="select images from save_image where id=4";//从数据库中读出要还原文件的二进制码,这里我读的是自己的数据库id为4的文件  

File file=new File("E:\\\\1.jpg");//本地生成的文件  

if(!file.exists())  

  

try   

file.createNewFile();  

 catch (Exception e)   

e.printStackTrace();  

  

  

try   

byte[] Buffer = new byte[4096*5];  

statement=connection.prepareStatement(sqlString);  

resultSet = statement.executeQuery();  

if(resultSet.next())  

  

FileOutputStream outputStream = new FileOutputStream(file);  

InputStream iStream = resultSet.getBinaryStream("images");//去字段用getBinaryStream()  

int size=0;  

while((size=iStream.read(Buffer))!=-1)  

  

System.out.println(size);  

outputStream.write(Buffer,0,size);  

  

  

 catch (Exception e)   

e.printStackTrace();  

  

 

参考技术A 你的意思是将文件转化成流的形式是吧?可以这么做,先通过本类来得到类的加载器,然后在通过类的加载器来把文件作为流加载进来:FileInputStream
input
=
this.getClass().getClassLoader().getResourceAsStream("文件名称");
参考技术B

java里把文件转换成二进制的步骤如下:

1、在Eclipse中新建一个Java工程,在此工程中新建一个Java类;

2、在新建的Java类中利用FileInputStream和ByteArrayOutputStream来读取指定文件的内容,并转换成二进制;

3、具体实现代码如下:

public static byte[] getFileToByte(File file) 
byte[] by = new byte[(int) file.length()];
try 
InputStream is = new FileInputStream(file);
ByteArrayOutputStream bytestream = new ByteArrayOutputStream();
byte[] bb = new byte[2048];
int ch;
ch = is.read(bb);
while (ch != -1) 
bytestream.write(bb, 0, ch);
ch = is.read(bb);

by = bytestream.toByteArray();
 catch (Exception ex) 
ex.printStackTrace();

return by;

以上是关于Java中如何把图片转换成二进制流的主要内容,如果未能解决你的问题,请参考以下文章

c# 图片转二进制流

Java 图片二进制数据转换成流输出请求解答

在java里面 把 文件转换成二进制流 然后在.net里面 再把二进制流转化成文件.......

JAVA如何将二进制数转换成文件?

java怎么数据库中的二进制转换成图片类型

使用JAVA以二进制流的方式将图片存到MYSQL数据库中怎么存详细一点!谢谢!