-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 Nizamutdinov
  • 806
  • 13
  • 30

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
  • 19,950
  • 8
  • 59
  • 87
0
in = getResources().getAssets().open("schedule.xls"); 

This works fine!

Pulkit Goyal
  • 5,519
  • 1
  • 28
  • 50
Adel Nizamutdinov
  • 806
  • 13
  • 30