web-dev-qa-db-ja.com

InputStreamを使用してテキストファイルを読み取る

Android app:

"1.something written
2.in this file
3.is to be read by
4.the InputStream
..."

だから私は次のような文字列を返すことができます:

"something written\nin this file\nis to be read by\nthe InputStream"

私が考えていたのは(擬似コード):

make an inputstream
is = getAssest().open("textfile.txt");  //in try and catch
for loop{
string = is.read() and if it equals "." (i.e. from 1., 2., 3. etc) add "/n" ...
}
18
RE60K

これを試して

import Android.app.Activity;
import Android.os.Bundle;
import Android.widget.Toast;
import Java.io.*;

public class FileDemo1 extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        try {
            playWithRawFiles();
        } catch (IOException e) {
            Toast.makeText(getApplicationContext(), "Problems: " + e.getMessage(), 1).show();
        }
    }

    public void playWithRawFiles() throws IOException {      
        String str = "";
        StringBuffer buf = new StringBuffer();            
        InputStream is = this.getResources().openRawResource(R.drawable.my_base_data);
        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(is));
            if (is != null) {                            
                while ((str = reader.readLine()) != null) {    
                    buf.append(str + "\n" );
                }                
            }
        } finally {
            try { is.close(); } catch (Throwable ignore) {}
        }
        Toast.makeText(getBaseContext(), buf.toString(), Toast.LENGTH_LONG).show();
    }
}
29
Yogesh Tatwal

BufferedReaderを使用して、入力ストリームを読み取ります。 BufferedReaderは文字入力ストリームからテキストを読み取り、文字、配列、および行の効率的な読み取りを提供するために文字をバッファリングします。 InputStreamは、バイトの入力ストリームを表します。 reader.readLine()は、ファイルを1行ずつ読み取ります。

BufferedReader reader = new BufferedReader(new InputStreamReader(in));
StringBuilder out = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
    out.append(line);   // add everything to StringBuilder 
    // here you can have your logic of comparison.
    if(line.toString().equals(".")) {
        // do something
    } 

}
12
Vinay
                File fe=new File(abc.txt);
                FileInputStream fis=new FileInputStream(fe);
                byte data[]=new byte[fis.available()];
                fis.read(data);
                fis.close();
                String str=new String(data);
                System.out.println(str);
1
Ziyad