我找到了在android中编写和读取文件的方法。我必须编写可以将经度和纬度写入gpx文件的应用程序,然后我必须从gpx文件中读取经度和纬度以重新创建用户的方式。任何人都可以告诉我如何做到这一点。非常感谢!
答案 0 :(得分:1)
您可以使用GPXParser库。
编写GPX文件的示例
GPX gpx = new GPX();
GPXParser gpxParser = new GPXParser();
FileOutputStream out = new FileOutputStream(fullPath);
gpxParser.writeGPX(gpx, out);
out.close();
答案 1 :(得分:0)
要读取和写入àgpx文件,您应该只知道文件结构,请参阅此链接:fr.wikipedia.org/wiki/GPX_%28format_de_fichier%29
以下是阅读gpx文件的教程:http://www.edumobile.org/android/get-location-from-gpx-file/
您也可以使用gpxparser库:http://sourceforge.net/projects/gpxparser/