欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

java 文件和byte互转的实例

时间:2023-02-12 10:53:23|栏目:JAVA代码|点击:

实例如下所示:

/** 
  * 获得指定文件的byte数组 
  */ 
 private byte[] getBytes(String filePath){ 
  byte[] buffer = null; 
  try { 
   File file = new File(filePath); 
   FileInputStream fis = new FileInputStream(file); 
   ByteArrayOutputStream bos = new ByteArrayOutputStream(1000); 
   byte[] b = new byte[1000]; 
   int n; 
   while ((n = fis.read(b)) != -1) { 
    bos.write(b, 0, n); 
   } 
   fis.close(); 
   bos.close(); 
   buffer = bos.toByteArray(); 
  } catch (FileNotFoundException e) { 
   e.printStackTrace(); 
  } catch (IOException e) { 
   e.printStackTrace(); 
  } 
  return buffer; 
 }
 
 /** 
  * 根据byte数组,生成文件 
  */ 
 public static void getFile(byte[] bfile, String filePath,String fileName) { 
  BufferedOutputStream bos = null; 
  FileOutputStream fos = null; 
  File file = null; 
  try { 
   File dir = new File(filePath); 
   if(!dir.exists()&&dir.isDirectory()){//判断文件目录是否存在 
    dir.mkdirs(); 
   } 
   file = new File(filePath+"\\"+fileName); 
   fos = new FileOutputStream(file); 
   bos = new BufferedOutputStream(fos); 
   bos.write(bfile); 
  } catch (Exception e) { 
   e.printStackTrace(); 
  } finally { 
   if (bos != null) { 
    try { 
     bos.close(); 
    } catch (IOException e1) { 
     e1.printStackTrace(); 
    } 
   } 
   if (fos != null) { 
    try { 
     fos.close(); 
    } catch (IOException e1) { 
     e1.printStackTrace(); 
    } 
   } 
  } 
 }

上一篇:JAVA控制流程break continue的示例代码

栏    目:JAVA代码

下一篇:Java设计模式之开闭原则精解

本文标题:java 文件和byte互转的实例

本文地址:http://www.codeinn.net/misctech/225613.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有