-1

What folder should I put in excel files (*.xls) to android project? I want them to be in the apk files, and how to open them later? I tried to put them in assets folder, and open like that:

    try {
        in = getAssets().open("schedule.xml");
    } catch (IOException e) {
        e.printStackTrace();
        return "can't open the file";
    }

but it didn't work.

Adel Nizamuddin
  • 823
  • 14
  • 31

2 Answers2

0

Do you mean xls or xml? These are two very different types, make sure you're using the right file type.

Any file can be put in res/raw folder. If the folder doesn't exist create it.

slayton
  • 20,123
  • 10
  • 60
  • 89
0
in = getResources().getAssets().open("schedule.xls"); 

This works fine!

Pulkit Goyal
  • 5,604
  • 1
  • 32
  • 50
Adel Nizamuddin
  • 823
  • 14
  • 31