by Rader » Fri Mar 21, 2008 8:52 am
you can create a file and append the data collected every time :
FileOutputStream os = context.openFileOutput(YOUR_LOCAL_FILENAME, Context.MODE_PRIVATE);
os.write(buffer,0,offset);
or you can just use SqlLite db, many examples can found on this site
Best regards,
Rader