当前位置:   article > 正文

Android 如何从SD卡中读取数据?_android sdcard 读取

android sdcard 读取

现在的Android在SD卡上的文件需要用到专门的方法来读取。之前提到的FileInputStream不好用,我们下面会提到,所以写了两个方法来实现在SD卡上存取数据。

首先你需要在AndoridMainfest.xml中添加权限

SD卡中的创建和删除文件权限
<user-permission android:name="android.permission.MOUNT_ONMOUNT_FILESYSTEMS">
向SD卡中写去数据的权限
<user-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE">
  • 1
  • 2
  • 3
  • 4

Look!

pubilc String read(String content) {
    try {
        //这个判断语句使我们常用的:判断手机是否插入了SD卡和是否有访问权限,如果都有就返回true
        if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
                //后面的这个方法是返回SD卡中的目录
                File sdCardDir = Envrionment.getExternalStorageDirectory();
                //获取指定文件的输入流
                FileInputStream fis = new FileInputStream(sdCarDir.getCanonicalPath() + "这里写你要读取的文件名");
                //将指定输入流包装成BufferedReader
                BufferedReader br = new BufferedReader(new InputStreamReader(fis));
                StringBuilder sb = new StringBuilder("");
                String line = null;
                //循环读取文件内容
                while ((line = br.readline()) != null) {
                    sb.append(line);
                }
                br.close();
                return sb.toString();
        }
    } catch (Exception e) {
        e.printStrackTrace();
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

上面是读的方法,下面就是写的方法。

public void write(String content) {
    try {
        if (Environment.getExternalStorageState().equals(Enviroment.MEDIA_MOUNTED)) {
            //获取SD卡目录
            File sdCardDir = Environment.getExternalStorageDirectory();
                File targetFile = new File(sdCardDir.getCanonicalPath() + "你要写入的文件名");
                //以指定文件创建RandomAccessFile对象
                RandomAccessFile raf = mew RandomAccessFile(targetFile, "rw");
                //记住,输入的时候位置是要用到指针的
                raf.seek(targetFile.length());
                //输出文件内容
                raf.write(content.getBytes());
                //关闭RandomAccessFile
                raf.close();
        } 
    } catch (Exception e) {
        e.printStackTrace();
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

在写入SD卡的时候有几点要说明一下:

  • 用RandomAccessFile方法的时候必须要指定位置,会报错或者是从头输入
  • 如果你用了FileOutputStream输入数据,它会把文件中的所有内容都清空,别问我为什么知道!@#!#%&&(@#(*)1@#$15…..
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/319369
推荐阅读
相关标签
  

闽ICP备14008679号