我正在开发一个 android 应用程序,我想读取一个 xsl 文件。我有以下代码
File rootPath=Environment.getExternalStorageDirectory();
try {
File randomContactsFile = new File(rootPath.getPath()+"/assets/LoginTest.xlsx");
System.out.println(randomContactsFile.exists());
}catch(Exception e){
}
randomContactsFile.exists()
返回 false 并且我收到文件未找到异常。
请帮忙。
谢谢