android开发实现文件读写

作者:jChenys 时间:2022-08-03 09:46:18 

本文实例为大家分享了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线程执行

来源:https://blog.csdn.net/qq313629058/article/details/107582488

标签:android,文件读写
0
投稿

猜你喜欢

  • 深入解析:打造自动消失的对话框

    2022-04-07 02:53:56
  • SpringBoot整合mybatis-generator-maven-plugin的方法

    2022-08-14 18:34:22
  • Netty分布式从recycler对象回收站获取对象过程剖析

    2021-08-12 06:45:48
  • Android Studio中Run按钮是灰色的快速解决方法

    2023-12-27 03:06:18
  • SpringBoot项目的测试类实例解析

    2021-05-29 20:35:04
  • Logger.error打印错误异常的详细堆栈信息

    2022-01-06 23:03:04
  • SpringBoot统一功能处理实现的全过程

    2021-06-12 11:14:49
  • Java开发实现猜拳游戏

    2023-09-27 03:21:46
  • Android Data Binding 在 library module 中遇到错误及解决办法

    2021-08-31 12:16:31
  • java Spring Boot 配置redis pom文件操作

    2022-01-25 20:57:13
  • Android支付宝支付设计开发

    2022-11-19 18:05:25
  • 详解Android中实现ListView左右滑动删除条目的方法

    2021-08-15 03:38:53
  • Grow heap (frag case) 堆内存过大的深入解析

    2023-04-28 15:30:27
  • SpringBoot之自定义Filter获取请求参数与响应结果案例详解

    2023-07-16 20:22:21
  • 基于Spring-Security自定义登陆错误提示信息

    2021-09-20 17:33:40
  • java使用lambda表达式对List集合进行操作技巧(JDK1.8)

    2021-05-30 06:41:06
  • 浅谈Java基准性能测试之JMH

    2023-01-25 13:17:40
  • C#实现多线程的同步方法实例分析

    2021-11-01 11:56:42
  • IntelliJ IDEA 如何配置git的操作方法

    2021-12-28 11:24:44
  • 深入理解C#中的枚举

    2022-06-03 02:58:34
  • asp之家 软件编程 m.aspxhome.com