我正在尝试从原始文件夹中动态检索文件,代码如下
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){}
如果我直接在“要写的内容”部分中键入包名称,则会显示错误。请给出一些想法。