zoukankan      html  css  js  c++  java
  • Android文件访问

    Android中对于文件操作除了java的基础库汇总的IO、File等之外,还提供了几种API

    1、Context类提供的openFileOutput()和openFileInput()两个方法分别获取IO流,然后就可以进行相关读写操作了。
      写操作中有个文件的操作模式的参数,也是Context提供的几个常量:MODE_PRIVATE,覆盖文件,默认模式;
      MODE_APPEND,追加内容,不存在就新建。
      //读取文件
    public String load(Context context,String fileName) { FileInputStream is=null; BufferedReader reader=null; StringBuilder result=new StringBuilder(); try { is=context.openFileInput(fileName); reader = new BufferedReader(new InputStreamReader(is)); String l=""; while((l=reader.readLine())!=null) { result.append(l); } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if(reader!=null) { try { reader.close(); } catch (IOException e) { e.printStackTrace(); } } } return result.toString(); }

    //写入文件   
    public boolean write(Context context,String fileName,String content) { FileOutputStream os=null; BufferedWriter writer=null; try { os=context.openFileOutput(fileName,context.MODE_APPEND); writer=new BufferedWriter(new OutputStreamWriter(os)); writer.write(content); return true; } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if(writer!=null) { try { writer.close(); } catch (IOException e) { e.printStackTrace(); } } } return false; }

    2、下面使用的四个Environment的方法,获取当前运行环境的四个不同目录,返回一个File对象,我们可以依据这个File

    对象进行新建、写入、读取等操作。对于不同厂商,对于sd卡手机内存的访问api可能会有修改,这些需要实际情况,实际分析。

            Log.i("info","getDataDirectory()"+Environment.getDataDirectory().getAbsolutePath());
            Log.i("info","getRootDirectory()"+Environment.getRootDirectory().getAbsolutePath());
            Log.i("info","getExternalStorageDirectory()"+Environment.getExternalStorageDirectory().getAbsolutePath());
            Log.i("info","getExternalStoragePublicDirectory()"+Environment.getExternalStoragePublicDirectory("basePath").getAbsolutePath());
  • 相关阅读:
    跨域上传图片的尝试过程,最终成功了。哈哈
    老子再也不加什么所谓的技术群了,顶撞群主的话,就被踢了。
    开发使用的插件
    设计原则记录
    程序员修神之路--redis做分布式锁可能不那么简单
    程序员过关斩将--面试官再问你Http请求过程,怼回去!
    程序员修神之路--问世间异步为何物?
    程序员修神之路--提高网站的吞吐量
    程序员过关斩将--你的业务是可变的吗(福利你领了吗)
    程序员修神之路--🤠分布式高并发下Actor模型如此优秀🤠
  • 原文地址:https://www.cnblogs.com/z964166725/p/7220312.html
Copyright © 2011-2022 走看看