真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

實例解析Java圖片與byte數(shù)組互相轉(zhuǎn)換

實例如下:

創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供北京網(wǎng)站建設(shè)、北京做網(wǎng)站、北京網(wǎng)站設(shè)計、北京網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、北京企業(yè)網(wǎng)站模板建站服務(wù),十多年北京做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
//圖片到byte數(shù)組
 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數(shù)組到圖片
 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數(shù)組到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數(shù)組轉(zhuǎn)化成十進制
  for(int k=0;k

文件解析:

FileImageOutputStream 換成了 FileOutputStream
FileImageInputStream 換成 FileInputStream

相關(guān)學(xué)習(xí)推薦:Java視頻教程


網(wǎng)頁標(biāo)題:實例解析Java圖片與byte數(shù)組互相轉(zhuǎn)換
標(biāo)題鏈接:http://weahome.cn/article/chosje.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部