1

我真的需要有人帮助我试图让我的解析器读取并只显示 xml 文件的一部分,我可以从上到下读取两次,但是当我尝试在我的 xml 处理程序中使用将每个部分分开的内部标签时它不这样做并且变得精神并表现出一点点

这是我的解析器的代码

package heavytime
import java.net.URL;

import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;

import org.xml.sax.InputSource;
import org.xml.sax.XMLReader;

//import android.content.Intent;
import android.os.Bundle;
//import android.view.View;
//import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.TextView;

public class Mainweather extends Seskanoreweatherpart2Activity {

weatherlist sitesList = null;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main2);

     LinearLayout layout = new LinearLayout(this);
     layout.setOrientation(1);
     layout.setBackgroundColor(0xFF000080);

     TextView value [];

    try {

        /** Handling XML */
        SAXParserFactory spf = SAXParserFactory.newInstance();
        SAXParser sp = spf.newSAXParser();
        XMLReader xr = sp.getXMLReader();

        /** Send URL to parse XML Tags */
        URL sourceUrl = new URL(
        "http://www.seskanore.com/currentoutput.xml");


        /** Create handler to handle XML Tags ( extends DefaultHandler ) */
        XMLhandler XMLhandler = new XMLhandler();
        xr.setContentHandler(XMLhandler);
        xr.parse(new InputSource(sourceUrl.openStream()));

        } catch (Exception e) {
        System.out.println("XML Pasing Excpetion = " + e);
        }

        /** Get result from XMLhandler SitlesList Object */
        sitesList = XMLhandler.sitesList;

        /** Assign textview array lenght by arraylist size */
   //       item = new TextView[sitesList.getName().size()];
        value = new TextView[sitesList.getName().size()];

        /** Set the result text in textview and add it to layout */
        for (int i = 0; i < sitesList.getName().size(); i++) {
        value[i] = new TextView(this);
        value[i].setText(sitesList.getvalue().get(i)+ " is "           +sitesList.getitem().get(i));

        layout.addView(value[i]);

         }


        /** Set the layout view to display */
        setContentView(layout);
 }
 }

这是我的 XML 处理程序的代码

package heavytime
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

public class XMLhandler extends DefaultHandler {

Boolean currentElement = false;
Boolean temperature = false;
String currentValue = null;
//  int currentVal = 0;
public static weatherlist sitesList = null;

public static weatherlist getSitesList() {
return sitesList;
}

public static void setSitesList(weatherlist sitesList) {
XMLhandler.sitesList = sitesList;
}

 @Override
    public void startDocument() throws SAXException {
        // Some sort of setting up work
    } 

@Override
public void startElement(String uri, String localName, String qName,
Attributes attributes) throws SAXException {

    currentElement = true;

if (localName.equals("weatherdata"))
{
    sitesList = new weatherlist();}
else if (localName.equals("item")){
        temperature = true;
        String attr = attributes.getValue("name");
        sitesList.setValue(attr);}


}



/** Called when tag closing*/
@Override
public void endElement(String uri, String localName, String qName)
throws SAXException {

currentElement = false;

/** set value*/ 
if (localName.equals("temperaturetags")){
    localName.equalsIgnoreCase("item");
    sitesList.setName(currentValue);
    localName.equalsIgnoreCase("value");
    sitesList.setitem(currentValue);

}


temperature = false;
}

/** Called to get tag characters*/
@Override
public void characters(char[] ch, int start, int length)
throws SAXException {

if (currentElement) {
currentValue = new String(ch, start, length);
currentElement = false;
}
}

@Override
public void endDocument() throws SAXException {
    // Some sort of finishing up work
}   
}

这是我的 Arraylist 的代码,用于显示解析的信息

    package heavytime
    import java.util.ArrayList;


    public class weatherlist {

private ArrayList<String> value = new ArrayList<String>();
private ArrayList<String> name = new ArrayList<String>();
private ArrayList<String> item = new ArrayList<String>();

/** In Setter method default it will return arraylist
* change that to add */

public ArrayList<String> getvalue() {
return value;
}

public void setValue(String value) {
this.value.add(value);
}

public ArrayList<String> getName() {
return name;
}

public void setName(String name) {
this.name.add(name);
}

public ArrayList<String> getitem() {
return item;
}

public void setitem(String item) {
this.item.add(item);
}

  }

我希望它只显示温度标签中的标签,但我尝试了所有方法,但似乎没有任何效果有人可以帮助我吗

非常感激

4

2 回答 2

2

您犯了一个常见错误,即假设该characters方法只会在解析器的一对startElementandendElement调用之间调用一次,并在开始和结束标记之间提供 entore 内容。其实可以多次调用,每次调用只包含部分内容。

正确的处理是在 startElement 方法中创建或附加某种类型的累加器(通常是 aStringBuilderStringBuffer),在 characters 方法中累加到其中,然后在 endElement 方法中使用和处理或分离它。

我认为您的代码中还有更多错误,但这可能是使其正常工作的开始。

为了只处理特定标签中的项目,您需要设置一个布尔标志,表示您startElement在看到该标签的方法中找到了它,在标签的 endElement 中将其设置为 false,并测试该标志在从任何其他标签收集数据之前。您需要对 withing 的每个子标签使用上述过程<item>,因为它们将数据作为字符包含在内。

为了我自己的乐趣,并希望它可以帮助您更好地理解这一切,我编写了一个小处理程序,将数据收集<temperaturetags>到地图列表中。

package com.donroby;

import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class WeatherHandler extends DefaultHandler {

    private List<Map<String,String>> result = new ArrayList<Map<String,String>>();
    private Map<String,String> currentItem;
    private boolean collectingItems;
    private boolean collectingItem;
    private StringBuilder builder;

    public List<Map<String,String>> getResult() {
        return result;
    }

    @Override
    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
        if (qName.equals("temperaturetags")) {
            collectingItems = true;
        }
        else if (qName.equals("item") && collectingItems) {
            currentItem = new HashMap<String,String>();
            currentItem.put("name", attributes.getValue("name"));
            collectingItem = true;
        }
        else if (collectingItem) {
            builder = new StringBuilder();
        }
    }

    @Override
    public void endElement(String uri, String localName, String qName) throws SAXException {
        if (qName.equals("temperaturetags")) {
            collectingItems = false;
        }
        if (qName.equals("item") && collectingItems) {
            result.add(currentItem);
            currentItem = null;
            collectingItem = false;
        }
        else if (collectingItem) {
            currentItem.put(qName,  builder.toString());
            builder = null;
        }
    }

    @Override
    public void characters(char[] ch, int start, int length) throws SAXException {
        if (collectingItem &&(builder != null)) {
           builder.append(ch, start, length);
        }
    }
}

对于实际使用,我更有可能创建一个域对象并收集到该类的列表中,但这会使代码膨胀一点,超出我想要做的快速示例。

于 2011-09-04T17:27:44.000 回答
0

characters()功能中,使用String.trim(),然后String.length()>0在继续之前检查是否。

然后分别在和事件处使用stack模型push()pop()数据startElement()endElement()

于 2014-01-28T20:06:49.550 回答