美文网首页
文件操作

文件操作

作者: junwu_123 | 来源:发表于2017-08-23 10:34 被阅读0次

纯粹是个人学习总结,如有不对的地方请吐槽。

一、资源文件的读取:

  1. 从resource的raw中读取文件数据:
    String res = "";
    try{
    //得到资源中的Raw数据流
    InputStream in = getResources().openRawResource(R.raw.test);
    //得到数据的大小
    int length = in.available();
    byte [] buffer = new byte[length];
    //读取数据
    in.read(buffer);
    //依test.txt的编码类型选择合适的编码,如果不调整会乱码
    res = EncodingUtils.getString(buffer, "BIG5");
    //关闭
    in.close();
    }catch(Exception e){
    e.printStackTrace();
    }

  2. 从resource的asset中读取文件数据
    String fileName = "test.txt"; //文件名字
    String res="";
    try{
    //得到资源中的asset数据流
    InputStream in = getResources().getAssets().open(fileName);
    int length = in.available();
    byte [] buffer = new byte[length];
    in.read(buffer);
    in.close();
    res = EncodingUtils.getString(buffer, "UTF-8");
    }catch(Exception e){
    e.printStackTrace();
    }

二、读写/data/data/<应用程序名>目录上的文件

//写数据
public void writeFile(String fileName,String writestr) throws IOException{
try{
FileOutputStream fout =openFileOutput(fileName, MODE_PRIVATE);
byte [] bytes = writestr.getBytes();
fout.write(bytes);
fout.close();
}
catch(Exception e){
e.printStackTrace();
}
}

//读数据
public String readFile(String fileName) throws IOException{
String res="";
try{
FileInputStream fin = openFileInput(fileName);
int length = fin.available();
byte [] buffer = new byte[length];
fin.read(buffer);
res = EncodingUtils.getString(buffer, "UTF-8");
fin.close();
}
catch(Exception e){
e.printStackTrace();
}
return res;
}

三、读写SD卡中的文件。也就是/mnt/sdcard/目录下面的文件

//写数据到SD中的文件
public void writeFileSdcardFile(String fileName,String write_str) throws IOException{
try{

FileOutputStream fout = new FileOutputStream(fileName);
byte [] bytes = write_str.getBytes();

fout.write(bytes);
fout.close();
}

catch(Exception e){
e.printStackTrace();
}
}

//读SD中的文件
public String readFileSdcardFile(String fileName) throws IOException{
String res="";
try{
FileInputStream fin = new FileInputStream(fileName);
int length = fin.available();
byte [] buffer = new byte[length];
fin.read(buffer);
res = EncodingUtils.getString(buffer, "UTF-8");
fin.close();
}
catch(Exception e){
e.printStackTrace();
}
return res;
}

四、使用File类进行文件的读写

//读文件
public String readSDFile(String fileName) throws IOException {
File file = new File(fileName);
FileInputStream fis = new FileInputStream(file);
int length = fis.available();
byte [] buffer = new byte[length];
fis.read(buffer);
res = EncodingUtils.getString(buffer, "UTF-8");
fis.close();
return res;
}

//写文件
public void writeSDFile(String fileName, String write_str) throws IOException{
File file = new File(fileName);
FileOutputStream fos = new FileOutputStream(file);
byte [] bytes = write_str.getBytes();
fos.write(bytes);
fos.close();
}
参考地址:http://blog.csdn.net/ztp800201/article/details/7322110

相关文章

  • 文件操作

    文件操作 目标 文件操作的作用 文件的基本操作打开读写关闭 文件备份 文件和文件夹的操作 一. 文件操作的作用 思...

  • 文件和目录处理相关

    文件和目录处理相关 题: 考点:文件操作/写入操作; 延伸:目录操作函数,其他文件操作; 文件读写操作 文件系统函...

  • 09-文件操作

    一、文件操作流程 a.普通文件操作流程: 打开文件 操作文件 关闭文件 b. json文件操作流程: open(文...

  • VBS文件操作

    VBS文件操作'操作文本文件,操作fso对象(文件对象操作) --------------------------...

  • 文件操作

    文件操作:打开文件、读写文件、操作文件内容 写入文件操作:(把大象装入冰箱)1.打开文件 ...

  • 类的补充

    一.复习 1.文件操作a.操作流程:打开文件(open),操作文件,关闭文件with open() as 文件变量...

  • 文件

    目标 文件操作的作用 文件的基本操作打开读写关闭 文件备份 文件和文件夹的操作 一. 文件操作的作用 思考:什么是...

  • 16总 正则表达式

    复习: 1.文件操作a.操作流程: 打开文件(open) --- 操作文件 --- 关闭文件(close)with...

  • 2018-09-10

    01-recode 1.文件操作a.操作流程:打开文件---》操作文件----》关闭文件with open() ...

  • 2018-09-10 day16总结

    1.文件操作 a.操作流程:打开文件(open)-操作文件-关闭文件(close)with open() as 文...

网友评论

      本文标题:文件操作

      本文链接:https://www.haomeiwen.com/subject/yncddxtx.html