Actually i am developing a Map browser app in Android. I have a .dat file contains map information with a File format like this,
struct point{
int x,
int y;
};
How can i read this .dat file using this format and copy the values into x and y?