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 を返し、ファイルが見つからないという例外が発生します。
助けてください。
ありがとう