我知道这段代码会在 res/raw 上打开 dummytext.txt 文件
InputStream inputStream = getResources().openRawResource(
R.raw.dummytext);
但是,如果文件名dummytext
是从搜索查询中获取的,例如使用此代码-
int Index = cursor.getColumnIndexOrThrow(DictionaryDatabase.KEY_DETAILS);
details.setText(cursor.getString(Index));
那我怎么能通过 InputStream inputStream 命令打开 dummytext 文件呢?