tags:

views:

66

answers:

1

The question is in the title.

+4  A: 

This isn't specific to Android, but you'd want to create a java.io.File and perhaps use a java.util.Scanner to read it (if it's text). Otherwise you'll create java.io.InputStream and work from that.

Depending on what format you want to use and the nature of the data, you can also use things like java.util.Properties, XML, etc.

See also

developer.android.com links

polygenelubricants