读取一个简单的文本文件


115

我正在尝试在示例Android应用程序中读取一个简单的文本文件。我正在使用下面的书面代码来阅读简单的文本文件。

InputStream inputStream = openFileInput("test.txt");
InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
BufferedReader bufferedReader = new BufferedReader(inputStreamReader);

我的问题是:我应该将该"test.txt"文件放在项目的什么位置?我试过将文件放在"res/raw""asset"文件夹下,但是我得到了exception "FileNotFound"上面编写的代码的第一个实时执行的时间。

谢谢您的帮助

Answers:


181

将您的文本文件放在/assetsAndroid项目下的目录中。使用AssetManager类访问它。

AssetManager am = context.getAssets();
InputStream is = am.open("test.txt");

或者,您也可以将文件放在/res/raw目录中,该文件将在该目录中建立索引,并且可以通过R文件中的ID进行访问:

InputStream is = context.getResources().openRawResource(R.raw.test);

9
想知道这两种方法之间的性能差异,快速基准测试显示没有明显的差异。
Reuben L.

用于基准测试的文本文件的大小是多少,您是否将图像和其他资源放入了模拟实时(商业/免费)Android应用程序的res文件夹中?
Sree Rama

2
我的“ hello world”应用中没有“ asset”文件夹。我应该手动创建吗?
Kaushik Lele 2014年

2
顺便说一句,/assets必须从Android Studio 1.2.2开始手动添加目录。它应该进去src/main
Jpaji Rajnish

3
对于像@KaushikLele这样的人,他们想知道如何获取上下文;这很容易。在活动中,您可以简单地通过使用“ this”关键字或调用“ getCurrentContext()”方法来获取它。
亚历克斯(Alex)

25

试试这个,

package example.txtRead;

import java.io.BufferedReader;
import java.io.ByteArrayOutputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
import java.util.Vector;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class txtRead extends Activity {
    String labels="caption";
    String text="";
    String[] s;
    private Vector<String> wordss;
    int j=0;
    private StringTokenizer tokenizer;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        wordss = new Vector<String>();
        TextView helloTxt = (TextView)findViewById(R.id.hellotxt);
        helloTxt.setText(readTxt());
 }

    private String readTxt(){

     InputStream inputStream = getResources().openRawResource(R.raw.toc);
//     InputStream inputStream = getResources().openRawResource(R.raw.internals);
     System.out.println(inputStream);
     ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();

     int i;
  try {
   i = inputStream.read();
   while (i != -1)
      {
       byteArrayOutputStream.write(i);
       i = inputStream.read();
      }
      inputStream.close();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }

     return byteArrayOutputStream.toString();
    }
}

23

这是我的方法:

public static String readFromAssets(Context context, String filename) throws IOException {
    BufferedReader reader = new BufferedReader(new InputStreamReader(context.getAssets().open(filename)));

    // do reading, usually loop until end of file reading  
    StringBuilder sb = new StringBuilder();
    String mLine = reader.readLine();
    while (mLine != null) {
        sb.append(mLine); // process line
        mLine = reader.readLine();
    }
    reader.close();
    return sb.toString();
}

如下使用它:

readFromAssets(context,"test.txt")

1
指定文件的编码(例如“ UTF-8”)作为InputStreamReader构造函数中的第二个参数可能很有用。
Makalele

7

在文件assets夹中拥有文件要求您使用以下代码,以便从assets文件夹中获取文件:

yourContext.getAssets().open("test.txt");

在此示例中,getAssets()返回一个AssetManager实例,然后您可以随意使用AssetManagerAPI中想要的任何方法。


5

在Android版Mono中...

try
{
    System.IO.Stream StrIn = this.Assets.Open("MyMessage.txt");
    string Content = string.Empty;
    using (System.IO.StreamReader StrRead = new System.IO.StreamReader(StrIn))
    {
      try
      {
            Content = StrRead.ReadToEnd();
            StrRead.Close();
      }  
      catch (Exception ex) { csFunciones.MostarMsg(this, ex.Message); }
      }
          StrIn.Close();
          StrIn = null;
}
catch (Exception ex) { csFunciones.MostarMsg(this, ex.Message); }

3

读取保存在资产文件夹中的文件

public static String readFromFile(Context context, String file) {
        try {
            InputStream is = context.getAssets().open(file);
            int size = is.available();
            byte buffer[] = new byte[size];
            is.read(buffer);
            is.close();
            return new String(buffer);
        } catch (Exception e) {
            e.printStackTrace();
            return "" ;
        }
    }

1
“ is.available();” 不安全。使用AssetFileDescriptor fd = getAssets()。openFd(fileName); int size =(int)fd.getLength(); fd.close();
GBY

0

这是一个同时处理rawasset文件的简单类:

公共类ReadFromFile {

public static String raw(Context context, @RawRes int id) {
    InputStream is = context.getResources().openRawResource(id);
    int size = 0;
    try {
        size = is.available();
    } catch (IOException e) {
        e.printStackTrace();
        return "";
    }
    return readFile(size, is);
}

public static String asset(Context context, String fileName) {
    InputStream is = null;
    int size = 0;
    try {
        is = context.getAssets().open(fileName);
        AssetFileDescriptor fd = null;
        fd = context.getAssets().openFd(fileName);
        size = (int) fd.getLength();
        fd.close();
    } catch (IOException e) {
        e.printStackTrace();
        return "";
    }
    return readFile(size, is);
}


private static String readFile(int size, InputStream is) {
    try {
        byte buffer[] = new byte[size];
        is.read(buffer);
        is.close();
        return new String(buffer);
    } catch (Exception e) {
        e.printStackTrace();
        return "";
    }
}

}

例如 :

ReadFromFile.raw(context, R.raw.textfile);

对于资产文件:

ReadFromFile.asset(context, "file.txt");
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.