3
對不起,對於這個問題,我是一個業餘程序員。如何從資源目錄中讀取多個文件
我在我想要閱讀的項目的raw
目錄中有495個文本文件。問題是,我只能用下面的代碼讀取其中的一個,但我不知道如何讀取所有文件。
請幫幫我,
try {
Resources res = getResources();
InputStream in_s = res.openRawResource(R.raw.help);
byte[] b = new byte[in_s.available()];
in_s.read(b);
txtHelp.setText(new String(b));
} catch (Exception e) {
// e.printStackTrace();
txtHelp.setText("Error: can't show help.");
}