Android:需要帮助解析.GPX文件中的数据

时间:2012-06-01 06:38:31

标签: android xml-parsing gpx

我按照教程学习解析gpx文件(在我的原始文件夹中)中的数据,并且由于某种原因没有数据被解析到NodeList中。这是我的XMLParser类

package bry.Bicker.OjaiHiking;

import java.io.IOException;
import java.io.StringReader;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;

import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;

import android.util.Log;

public class XMLParser {

public Document getDomElement(String xml) {
    Document doc = null;
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    try {

        DocumentBuilder db = dbf.newDocumentBuilder();

        InputSource is = new InputSource();
        is.setCharacterStream(new StringReader(xml));
        doc = db.parse(is);

    } catch (ParserConfigurationException e) {
        Log.e("Error: ", e.getMessage());
        return null;
    } catch (SAXException e) {
        Log.e("Error: ", e.getMessage());
        return null;
    } catch (IOException e) {
        Log.e("Error: ", e.getMessage());
        return null;
    }
    // return DOM
    return doc;
}

public String getValue(Element e, String str) {
    NodeList n = e.getElementsByTagName(str);
    return this.getElementValue(n.item(0));
}

public final String getElementValue(Node elem) {
    Node child;
    if (elem != null) {
        if (elem.hasChildNodes()) {
            for (child = elem.getFirstChild(); child != null; child = child
                    .getNextSibling()) {
                if (child.getNodeType() == Node.TEXT_NODE) {
                    return child.getNodeValue();
                }
            }
        }
    }
    return "";
}

}

以下是我尝试使用该类来解析文件的方法:

public void displayPoints(MapView map, Context context) {
    final String KEY_TRKPT = "trkpt";
    final String KEY_LAT = "lat";
    final String KEY_LON = "lon";

    XMLParser parser = new XMLParser();
    Document doc = parser.getDomElement(getString(R.raw.test));

    NodeList n1 = doc.getElementsByTagName(KEY_TRKPT);

    if (n1.getLength() > 0) {
        int[] lat = new int[n1.getLength()];
        int[] lon = new int[n1.getLength()];

        for (int i = 0; i < n1.getLength(); i++) {
            org.w3c.dom.Element e = (org.w3c.dom.Element) n1.item(i);
            lat[i] = Integer.parseInt(parser.getValue(e, KEY_LAT));
            lon[i] = Integer.parseInt(parser.getValue(e, KEY_LON));
        }
    } else {
        Log.i("Debug", "XML Parsing error. No data in nodelist.");
    }
}

并且GPX文件是从“MyTracks”应用程序导出的。

我没有收到任何错误,但是我的消息表明“XML解析错误。节点列表中没有数据。”被展示。

2 个答案:

答案 0 :(得分:1)

有一些有用的图书馆 - 包括我的。请参阅this other question on StackOverflow的答案。基本上我的库提供了两种解析GPX文件的方法:一旦获得/创建GPXParser对象(下面的示例中为mParser),您就可以直接解析GPX文件

Gpx parsedGpx = null;
try {
    InputStream in = getAssets().open("test.gpx");
    parsedGpx = mParser.parse(in);
} catch (IOException | XmlPullParserException e) {
    e.printStackTrace();
}
if (parsedGpx == null) {
    // error parsing track
} else {
    // do something with the parsed track
}

或者您可以解析远程文件:

mParser.parse("http://myserver.com/track.gpx", new GpxFetchedAndParsed() {
    @Override
    public void onGpxFetchedAndParsed(Gpx gpx) {
        if (gpx == null) {
            // error parsing track
        } else {
            // do something with the parsed track
        }
    }
});

欢迎捐款。

答案 1 :(得分:0)

这个开源库目前正在Android应用程序中使用,包括智能手机端和智能手表端

https://plus.google.com/u/0/communities/110606810455751902142

用法示例

Gpx gpx = GpxFileIo.parseIn( "SomeGeoCollection.gpx" ) ;

for (Point pt: gpx.getPoints( ) )
{
    Location loc = new Location( pt.getLatitude( ), pt.getLongitude( ) ) ;
    if (pt.getElevation( ) != null) loc.setElevation( pt.getElevation( ) ) ;
}
相关问题