我正在尝试从文本文件中读取数据" temp.txt"它位于我的原始文件夹中,并在文本视图中显示文件的内容" text"只要一个按钮"按钮"单击,但我的应用程序崩溃,这样做,很有可能我以错误的方式这样做,因为我是Android和Java编程的新手。我在这里粘贴代码,任何帮助将不胜感激
案例R.id.b:
InputStream is = getResources().openRawResource(R.raw.temp);
BufferedReader br = new BufferedReader(new InputStreamReader(is));
try {
string = br.readLine();
while(string != null){
st = string;
}
text.setText(st);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
break;
" ST"和"字符串"都是字符串变量。如果有人能指出另一种简单的方法来做同样的事情,我将很高兴。
答案 0 :(得分:4)
更改为以下内容:
InputStream is = getResources().openRawResource(R.raw.temp);
BufferedReader br = new BufferedReader(new InputStreamReader(is));
String line;
String entireFile = "";
try {
while((line = br.readLine()) != null) { // <--------- place readLine() inside loop
entireFile += (line + "\n"); // <---------- add each line to entireFile
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
text.setText(entireFile); // <------- assign entireFile to TextView
break;