简体   繁体   English

尝试使用SAXParser在Android应用中解析XML

[英]Trying to parse XML in Android app with SAXParser

I'm new to Android development, and I'm using the New Boston tutorials to guide me through parsing some xml I have retrieved from an API, however it doesn't seem to be working for me I think the problem is somewhere in the handler, anywhere here is my code, I'll start with the relevent excerpt from the application class: 我是Android开发的新手,我正在使用New Boston教程来指导我解析从API中检索到的xml,但是对于我来说似乎不起作用,我认为问题出在处理程序,这里是我的代码,我将从应用程序类的相关事件摘录开始:

String test = null;
    try {
        //Assign XML to test string
        test = new DownloadTextTask().execute(params).get();

        SAXParserFactory spf = SAXParserFactory.newInstance();
        SAXParser sp = spf.newSAXParser();  
        XMLReader xr = sp.getXMLReader();
        //create handler
        HandlingXMLStuff doingWork = new HandlingXMLStuff();
        xr.setContentHandler(doingWork);

        //parse xml
        xr.parse(test);

        //Assign parsed xml to string
        String information = "this is the access token: " + doingWork.getInformation();

        //Output parsed XML
        TextView myTextView = (TextView) findViewById(R.id.mytextview);
        myTextView.setText(information);

    } catch (InterruptedException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (ExecutionException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (SAXException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (ParserConfigurationException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

Now here is the handler: 现在是处理程序:

XMLDataCollected info = new XMLDataCollected();
boolean isUser = false;
boolean isToken = false;

public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException{
    if(localName.equals("user")){
        isUser = true;
    }else if(localName.equals("access_token")){
        isToken = true;
    }

}

public void characters (char ch[], int start, int length)
{
    String str = null;

    for (int i = start; i < start + length; i++) {
        StringBuilder sb = new StringBuilder(str);
        sb.append(ch[i]);
        str = sb.toString();
    }
    if (isUser){
        int u = Integer.parseInt(str);
        info.setID(u);
    }
    else if(isToken){
        info.setToken(str);
    }
}



public String getInformation()
{
    return info.dataToString();
}

XMLDataCollected Class: XMLDataCollected类别:

public class XMLDataCollected {
int userId = 0;
String accessToken = null;

public void setID(int i){
    userId = i;
}

public void setToken(String t){
    accessToken = t;
}


public int getUserId(){
    return userId; 
}


public String dataToString(){
    return accessToken; 
}

And finally here is the XML that I am trying to parse: 最后是我要解析的XML:

<xml>
<user>1</user>
<access_token>a5923jh34gdhei592jdyeo3jk2354323ji4</access_token>
<status>Login Successful</status>
</xml>

Any help anyone can give me with this will be highly apreciated 任何人都可以给我的帮助将非常可贵

I also followed that tutorial but I also didn't understand why it wasn't working. 我也遵循了该教程,但是我也不明白为什么它不起作用。 I did some research and came with XmlPullParser, it is very easy to use and works really well. 我进行了一些研究,并附带了XmlPullParser,它非常易于使用,并且效果很好。 Here is the documentation for the XmlPullParser: 这是XmlPullParser的文档:

http://developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html http://developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html

Hope it helps! 希望能帮助到你!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM