我的 android 项目的 assets 文件夹中有一个文件“myFile.txt”,我试图在我的 android 代码中读取它的文本,如下所示:
String filename= "myFile.txt";
InputStream inputStream;
try {
inputStream = getAssets().open(filename) ;
BufferedReader br = new BufferedReader(new InputStreamReader(inputStream));
String text = br.readLine();
Toast.makeText(getApplicationContext(), text, Toast.LENGTH_LONG).show();
TextView tw = (TextView) findViewById(R.id.hello);
tw.setText(text);
br.close();
inputStream.close();
} catch (Exception e) {
Toast.makeText(getApplicationContext(), e.getMessage(), Toast.LENGTH_LONG).show();
//e.printStackTrace();
}
应用程序不会崩溃,尽管它在带有文本“myFile.txt”的 catch 块中显示了 toast。帮我。等待。