以下のコードで、生のフォルダーからファイルを動的に取得しようとしています
try{
DataInputStream dataIO= new DataInputStream(getResources().getIdentifier("raw/"+chapter, null ,<what to write>);
String strLine= null;
while((strLine = dataIO.readLine())!=null){
buffer.append(strLine);
buffer.append("\n");
}
dataIO.close();
}catch(Exception e){}
「何を書くか」セクションにパッケージ名を直接入力すると、エラーが表示されます。それについて何か考えを教えてください。