I have a requirement where I need to read only 100 entries per day from an excel file. The file can have thousands of records.
I wish to create the system in android where a scheduled service will run every day at a pre defined time and read the next set of 100 records and do further processing on them.
Once all rows from the excel file are over, the scheduled service needs to cancel itself.
While reading on the forums, I came across discussions revolving around Timer task Alarm manager
Can anyone let me know which of these should be preferred and why? Also point out if any other efficient way of doing this exists.
I plan to make this work from android 2.1+ versions.