I am making a simple application on Android, and in a specific part of the application I would like to create an Excel file and write in it. I already prepared everything to use the jexcel library for editing excel using Java, but the fact is that I can not find the Excel file that I created. I tried to find it on my own device running the application, but could not.
String fileName = "hours.xls";
File file = new File(getApplicationContext().getFilesDir() + fileName);
Can anybody help me?
Thanks in advance:)
source
share