web-dev-qa-db-ja.com

Androidのリソースファイルにアクセスする

/ res/raw /フォルダー(/res/raw/textfile.txt)にリソースファイルがあり、これを処理するためにAndroidアプリから読み取ろうとしています。

public static void main(String[] args) {

    File file = new File("res/raw/textfile.txt");

    FileInputStream fis = null;
    BufferedInputStream bis = null;
    DataInputStream dis = null;

    try {
      fis = new FileInputStream(file);
      bis = new BufferedInputStream(fis);
      dis = new DataInputStream(bis);

      while (dis.available() != 0) {
              // Do something with file
          Log.d("GAME", dis.readLine()); 
      }

      fis.close();
      bis.close();
      dis.close();

    } catch (FileNotFoundException e) {
      e.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
    }
  }

別のパス構文を試しましたが、常にJava.io.FileNotFoundExceptionエラーが発生します。処理のために/res/raw/textfile.txtにアクセスするにはどうすればよいですか? File file = new File( "res/raw/textfile.txt"); Androidの間違ったメソッドですか?


*回答:*

// Call the LoadText method and pass it the resourceId
LoadText(R.raw.textfile);

public void LoadText(int resourceId) {
    // The InputStream opens the resourceId and sends it to the buffer
    InputStream is = this.getResources().openRawResource(resourceId);
    BufferedReader br = new BufferedReader(new InputStreamReader(is));
    String readLine = null;

    try {
        // While the BufferedReader readLine is not null 
        while ((readLine = br.readLine()) != null) {
        Log.d("TEXT", readLine);
    }

    // Close the InputStream and BufferedReader
    is.close();
    br.close();

    } catch (IOException e) {
        e.printStackTrace();
    }
}
32
Selzier

Activity/Widget呼び出しから_res/raw/textfile.txt_にファイルがある場合:

getResources().openRawResource(...)InputStreamを返します

ドットは、実際には、ファイル名に対応するR.raw ...にある整数である必要があります。おそらく_R.raw.textfile_(通常、拡張子のないファイルの名前です)

new BufferedInputStream(getResources().openRawResource(...));その後、ファイルのコンテンツをストリームとして読み取ります

28
Kennet