次のように設定されたテキストファイルがあります
Title - Welcome to the Dibb
Date - 13/03/11
Information - Hello and welcome to our website.
Title - Welcome to student room
Date - 06/05/11
Information - Hello and welcome to the student room. We are a online forum that allows previous and current students to ask questions.
このテキストファイルを解析して、タイトル行、日付行などを保存する必要があります。残りは情報として保存されます。ファイルを読み取り、ファイル全体を文字列として保存する方法を知っていますが、選択した情報を取得するのに行き詰まっています。
コード
これは私がテキストファイルを読むために使用したコードです
helloTxt.setText(readTxt());
}
private String readTxt() {
InputStream inputStream = getResources().openRawResource(R.raw.pages);
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();
}
String str = byteArrayOutputStream.toString();
return str;
}