android开发实现文件读写
更新时间:2020年07月28日 09:14:14 作者:jChenys
这篇文章主要为大家详细介绍了android开发实现文件读写,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了android实现文件读写的具体代码,供大家参考,具体内容如下
读取
/** * 文件读取 * @param is 文件的输入流 * @return 返回文件数组 */ private byte[] read(InputStream is) { //缓冲区inputStream BufferedInputStream bis = null; //用于存储数据 ByteArrayOutputStream baos = null; try { //每次读1024 byte[] b = new byte[1024]; //初始化 bis = new BufferedInputStream(is); baos = new ByteArrayOutputStream(); int length; while ((length = bis.read(b)) != -1) { //bis.read()会将读到的数据添加到b数组 //将数组写入到baos中 baos.write(b, 0, length); } return baos.toByteArray(); } catch (IOException e) { e.printStackTrace(); } finally {//关闭流 try { if (bis != null) { bis.close(); } if (is != null) { is.close(); } if (baos != null) baos.close(); } catch (IOException e) { e.printStackTrace(); } } return null; }
写入
/** * 将数据写入文件中 * @param buffer 写入数据 * @param fos 文件输出流 */ private void write(byte[] buffer, FileOutputStream fos) { //缓冲区OutputStream BufferedOutputStream bos = null; try { //初始化 bos = new BufferedOutputStream(fos); //写入 bos.write(buffer); //刷新缓冲区 bos.flush(); } catch (IOException e) { e.printStackTrace(); } finally {//关闭流 try { if (bos != null) { bos.close(); } if (fos != null) { fos.close(); } } catch (IOException e) { e.printStackTrace(); } } }
使用
//获取文件输入流 InputStream mRaw = getResources().openRawResource(R.raw.core); //读取文件 byte[] bytes = read(mRaw); //创建文件(getFilesDir()路径在data/data/<包名>/files,需要root才能看到路径) File file = new File(getFilesDir(), "hui.mp3"); boolean newFile = file.createNewFile(); //写入 if (bytes != null) { FileOutputStream fos = openFileOutput("hui.mp3", Context.MODE_PRIVATE); write(bytes, fos); }
该步骤为耗时操作,最好在io线程执行
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
Android基于zxing的二维码(网格)扫描 仿支付宝网格扫描
这篇文章主要为大家详细介绍了Android基于zxing的二维码网格扫描,仿支付宝网格扫描,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-03-03Android使用Retrofit实现自定义Converter解析接口流程详解
Retrofit是一个RESTful的HTTP网络请求框架的封装,网络请求的工作本质上是OkHttp完成,而Retrofit仅负责网络请求接口的封装2023-03-03详解AndroidStudio中代码重构菜单Refactor功能
这篇文章主要介绍了AndroidStudio中代码重构菜单Refactor功能详解,本文通过代码演示,功能截图来详细说明as为大名重构提供的各项功能,需要的朋友可以参考下2019-11-11Android中invalidate()和postInvalidate() 的区别及使用方法
Android中实现view的更新有两组方法,一组是invalidate,另一组是postInvalidate,其中前者是在UI线程自身中使用,而后者在非UI线程中使用。本文给大家介绍Android中invalidate()和postInvalidate() 的区别及使用方法,感兴趣的朋友一起学习吧2016-05-05Android、iOS和Windows Phone中的推送技术详解
这篇文章主要介绍了Android、iOS和Windows Phone中的推送技术详解,推送技术的实现通常会使用服务端向客户端推送消息的方式,也就是说客户端通过用户名、Key等ID注册到服务端后,在服务端就可以将消息向所有活动的客户端发送,需要的朋友可以参考下2015-01-01Android开源项目PullToRefresh下拉刷新功能详解
这篇文章主要为大家详细介绍了Android开源项目PullToRefresh下拉刷新功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2016-09-09
最新评论