我应该在excel文件(* .xls)中放入什么文件夹到android项目?我想让他们在apk文件中,以及如何在以后打开它们?我试着将它们放在assets文件夹中,然后打开:
try {
in = getAssets().open("schedule.xml");
} catch (IOException e) {
e.printStackTrace();
return "can't open the file";
}
但它不起作用。
答案 0 :(得分:0)
您的意思是xls
还是xml
?这是两种非常不同的类型,请确保您使用的是正确的文件类型。
任何文件都可以放在res/raw
文件夹中。如果该文件夹不存在,请创建它。
答案 1 :(得分:0)
in = getResources().getAssets().open("schedule.xls");
这很好用!