首页 > 代码库 > Java 把指定路径的文件读入内存并用字节数组保存工具方法
Java 把指定路径的文件读入内存并用字节数组保存工具方法
/** * * @param path 文件路径 * @return 文件转成字节数组 */ public static byte[] getByteArrayFrom(String path){ byte[] result=null; ByteArrayOutputStream outputStream=new ByteArrayOutputStream(); //创建文件 File file=new File(path); FileInputStream fileInputStream=null; try { fileInputStream=new FileInputStream(file); int len=0; byte[] buffer=new byte[1024]; while((len=fileInputStream.read(buffer))!=-1){ outputStream.write(buffer, 0, len); } result=outputStream.toByteArray(); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); }finally{ if(fileInputStream!=null){ try { fileInputStream.close(); fileInputStream=null; } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } return result; }
Java 把指定路径的文件读入内存并用字节数组保存工具方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。