Androidはテキストの生リソースファイルを読み取ります


123

物事は単純ですが、想定どおりに機能しません。

生のリソースとしてテキストファイルを追加しました。テキストファイルには、次のようなテキストが含まれています。

b)該当する法律が本ソフトウェアに関する保証を要求する場合、かかる保証はすべて、配信日から最長(90)日間に限定されます。

(c)仮想オリエンテーリングから提供される口頭または書面による情報やアドバイスはありません。そのディーラー、ディストリビューター、代理店、または従業員は、保証を作成するものではなく、ここに提供されている保証の範囲を拡大するものではありません。

(d)(米国のみ)一部の州では黙示の保証の除外が許可されていないため、上記の除外が適用されない場合があります。この保証は、お客様に特定の法的権利を付与するものであり、州によって異なる他の法的権利を有する場合もあります。

画面には次のようなレイアウトがあります。

<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
                     android:layout_width="fill_parent" 
                     android:layout_height="wrap_content" 
                     android:gravity="center" 
                     android:layout_weight="1.0"
                     android:layout_below="@+id/logoLayout"
                     android:background="@drawable/list_background"> 

            <ScrollView android:layout_width="fill_parent"
                        android:layout_height="fill_parent">

                    <TextView  android:id="@+id/txtRawResource" 
                               android:layout_width="fill_parent" 
                               android:layout_height="fill_parent"
                               android:padding="3dip"/>
            </ScrollView>  

    </LinearLayout>

未加工リソースを読み取るコードは次のとおりです。

TextView txtRawResource= (TextView)findViewById(R.id.txtRawResource);

txtDisclaimer.setText(Utils.readRawTextFile(ctx, R.raw.rawtextsample);

public static String readRawTextFile(Context ctx, int resId)
{
    InputStream inputStream = ctx.getResources().openRawResource(resId);

    ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();

    int i;
    try {
        i = inputStream.read();
        while (i != -1)
        {
            byteArrayOutputStream.write(i);
            i = inputStream.read();
        }
        inputStream.close();
    } catch (IOException e) {
        return null;
    }
    return byteArrayOutputStream.toString();
}

テキストは表示されますが、各行の後に奇妙な文字が表示されます[]どうすればその文字を削除できますか?ニューラインだと思います。

ワーキングソリューション

public static String readRawTextFile(Context ctx, int resId)
{
    InputStream inputStream = ctx.getResources().openRawResource(resId);

    InputStreamReader inputreader = new InputStreamReader(inputStream);
    BufferedReader buffreader = new BufferedReader(inputreader);
    String line;
    StringBuilder text = new StringBuilder();

    try {
        while (( line = buffreader.readLine()) != null) {
            text.append(line);
            text.append('\n');
        }
    } catch (IOException e) {
        return null;
    }
    return text.toString();
}

3
ヒント:rawResパラメータに@RawResのアノテーションを付けると、Android Studioがrawリソースを検査します。
Roel

有効なソリューションは回答として投稿する必要があります。
LarsH

回答:


65

バイトベースのInputStreamの代わりに文字ベースのBufferedReaderを使用するとどうなりますか?

BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
String line = reader.readLine();
while (line != null) { ... }

改行をreadLine()スキップすることを忘れないでください!


162

あなたはこれを使うことができます:

    try {
        Resources res = getResources();
        InputStream in_s = res.openRawResource(R.raw.help);

        byte[] b = new byte[in_s.available()];
        in_s.read(b);
        txtHelp.setText(new String(b));
    } catch (Exception e) {
        // e.printStackTrace();
        txtHelp.setText("Error: can't show help.");
    }

5
ここでは、Inputstream.available()が正しい選択であるかどうかはわかりません。むしろ、nをByteArrayOutputStreamに読み込んで、l n == -1になります。
ThomasRS 2012

15
これは、大きなリソースでは機能しない可能性があります。これは、入力ストリーム読み取りバッファーのサイズに依存し、リソースの一部のみを返すことができます。
d4n3

6
@ d4n3は正しいです。入力ストリームの使用可能なメソッドのドキュメントには、次のように記載されています。練習」
ozba

InputStream.availableのAndroidドキュメントを見てください。私がそれを正しく理解すれば、彼らはそれがこの目的のために使用されるべきではないと言う。愚かなファイルの内容を読むのは
それほど

2
また、一般的な例外をキャッチしないでください。代わりにIOExceptionをキャッチしてください。
alcsan

30

Apache "commons-io"のIOUtilsを使用すると、さらに簡単になります。

InputStream is = getResources().openRawResource(R.raw.yourNewTextFile);
String s = IOUtils.toString(is);
IOUtils.closeQuietly(is); // don't forget to close your streams

依存関係:http : //mvnrepository.com/artifact/commons-io/commons-io

Maven:

<dependency>
    <groupId>commons-io</groupId>
    <artifactId>commons-io</artifactId>
    <version>2.4</version>
</dependency>

Gradle:

'commons-io:commons-io:2.4'

1
IOUtilsを使用するには何をインポートする必要がありますか?
これらのユーザーは2013年

1
Apache commons-ioライブラリ(commons.apache.org/proper/commons-io)。または、Mavenを使用する場合(mvnrepository.com/artifact/commons-io/commons-io)。
tbraun 2013年

8
Gradleの

9
しかし、一般的に、3行以上のコードの記述を回避するために外部のサードパーティライブラリをインポートすることは、やりすぎのように見えます。
milosmns 2015

12

Kotlinを使用すると、1行のコードで実行できます。

resources.openRawResource(R.raw.rawtextsample).bufferedReader().use { it.readText() }

または拡張関数を宣言することもできます:

fun Resources.getRawTextFile(@RawRes id: Int) =
        openRawResource(id).bufferedReader().use { it.readText() }

そして、すぐにそれを使用してください:

val txtFile = resources.getRawTextFile(R.raw.rawtextsample)

貴方は天使です。
Robert Liberatore

これは私のために働いた唯一のものでした!ありがとうございました!
fuomag9

いいね!あなたは私の日を作りました!
廃止

3

むしろこのようにしてください:

// reads resources regardless of their size
public byte[] getResource(int id, Context context) throws IOException {
    Resources resources = context.getResources();
    InputStream is = resources.openRawResource(id);

    ByteArrayOutputStream bout = new ByteArrayOutputStream();

    byte[] readBuffer = new byte[4 * 1024];

    try {
        int read;
        do {
            read = is.read(readBuffer, 0, readBuffer.length);
            if(read == -1) {
                break;
            }
            bout.write(readBuffer, 0, read);
        } while(true);

        return bout.toByteArray();
    } finally {
        is.close();
    }
}

    // reads a string resource
public String getStringResource(int id, Charset encoding) throws IOException {
    return new String(getResource(id, getContext()), encoding);
}

    // reads an UTF-8 string resource
public String getStringResource(int id) throws IOException {
    return new String(getResource(id, getContext()), Charset.forName("UTF-8"));
}

アクティビティから、追加

public byte[] getResource(int id) throws IOException {
        return getResource(id, this);
}

またはテストケースから、追加

public byte[] getResource(int id) throws IOException {
        return getResource(id, getContext());
}

そして、エラー処理に注意してください-リソースが存在しなければならない場合、または何かが(非常に?)間違っている場合、例外をキャッチして無視しないでください。


によって開かれたストリームを閉じる必要がありますopenRawResource()か?
Alex Semeniuk 2013

わかりませんが、それは確かに標準です。例の更新。
ThomasRS 2013

2

これは間違いなく機能するもう1つの方法ですが、複数のテキストファイルを読み取って、1つのアクティビティで複数のテキストビューに表示することはできません。

TextView helloTxt = (TextView)findViewById(R.id.yourTextView);
    helloTxt.setText(readTxt());
}

private String readTxt(){

 InputStream inputStream = getResources().openRawResource(R.raw.yourTextFile);
 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();
}

2

@borislemkeあなたは同様の方法でこれを行うことができます

TextView  tv ;
findViewById(R.id.idOfTextView);
tv.setText(readNewTxt());
private String readNewTxt(){
InputStream inputStream = getResources().openRawResource(R.raw.yourNewTextFile);
 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();
 }

2

ここでは、ウィーケンズとボボドロイドのソリューションを組み合わせます。

Vovodroidのソリューションよりも正確で、weekensのソリューションよりも完全です。

    try {
        InputStream inputStream = res.openRawResource(resId);
        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
            try {
                StringBuilder result = new StringBuilder();
                String line;
                while ((line = reader.readLine()) != null) {
                    result.append(line);
                }
                return result.toString();
            } finally {
                reader.close();
            }
        } finally {
            inputStream.close();
        }
    } catch (IOException e) {
        // process exception
    }

2

次に、rawフォルダーからテキストファイルを読み取る簡単な方法を示します。

public static String readTextFile(Context context,@RawRes int id){
    InputStream inputStream = context.getResources().openRawResource(id);
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();

    byte buffer[] = new byte[1024];
    int size;
    try {
        while ((size = inputStream.read(buffer)) != -1) {
            outputStream.write(buffer, 0, size);
        }
        outputStream.close();
        inputStream.close();
    } catch (IOException e) {

    }
    return outputStream.toString();
}

2

これはKotlinでの実装です

    try {
        val inputStream: InputStream = this.getResources().openRawResource(R.raw.**)
        val inputStreamReader = InputStreamReader(inputStream)
        val sb = StringBuilder()
        var line: String?
        val br = BufferedReader(inputStreamReader)
        line = br.readLine()
        while (line != null) {
            sb.append(line)
            line = br.readLine()
        }
        br.close()

        var content : String = sb.toString()
        Log.d(TAG, content)
    } catch (e:Exception){
        Log.d(TAG, e.toString())
    }

1

1.最初にDirectoryフォルダーを作成し、resフォルダー内にrawという名前を付けます。2.以前に作成したrawディレクトリーフォルダー内に.txtファイルを作成し、任意の名前を付けます。eg.articles.txt.... 3。作成した.txtファイル内に必要なテキスト「articles.txt」4. main.xmlにテキストビューを含めることを忘れないでくださいMainActivity.java

@Override
protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_gettingtoknowthe_os);

    TextView helloTxt = (TextView)findViewById(R.id.gettingtoknowos);
    helloTxt.setText(readTxt());

    ActionBar actionBar = getSupportActionBar();
    actionBar.hide();//to exclude the ActionBar
}

private String readTxt() {

    //getting the .txt file
    InputStream inputStream = getResources().openRawResource(R.raw.articles);

    ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();

    try {
        int i = inputStream.read();
        while (i != -1) {
            byteArrayOutputStream.write(i);
            i = inputStream.read();
        }
        inputStream.close();

    } catch (IOException e) {
        e.printStackTrace();
    }
    return byteArrayOutputStream.toString();
}

それがうまくいったことを願っています!


1
InputStream is=getResources().openRawResource(R.raw.name);
BufferedReader reader=new BufferedReader(new InputStreamReader(is));
StringBuffer data=new StringBuffer();
String line=reader.readLine();
while(line!=null)
{
data.append(line+"\n");
}
tvDetails.seTtext(data.toString());
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.