未在Android中的Webview中显示已解析的数据

时间:2011-10-27 13:22:26

标签: android webview html-parsing saxparser

我是android开发的新手。请参阅附加图像enter image description here

请检查此网址 -

http://mobileecommerce.site247365.com/admin/catdata.xml

请检查讲义(cat_name)cat_desc它在android webview中无法正常显示。

我不知道为什么,任何人都可以帮助我或有任何想法吗?

这是我的代码 -

public void startElement(String uri, String localName,String qName, Attributes 
        attributes) throws SAXException {
    currentTag=localName;
    Log.v("in start elelmet", "in start elelmet");
    if(qName.equals("Table")){
        buffer=new StringBuffer();
        itemTagStarted=true;

        item=new NewsItem();
    }

}

@Override
public void characters(char[] ch, int start, int length)
        throws SAXException {
    if(itemTagStarted){
        if(currentTag.equals("Cat_Name")){
            item.setCatname(String.valueOf(ch,start,length));
        }

        if(currentTag.equals("Cat_id")){
            item.setCatid(String.valueOf(ch,start,length));
        }

        if(currentTag.equals("Cat_Desc")){
            buffer.append(String.valueOf(ch,start,length));
        }
    }
}

@Override
public void endElement(String uri, String localName,
        String qName) throws SAXException {
    currentTag="";
    if(qName.equals("Table")){
        itemTagStarted=false;
        newsList.add(item);
    }

    if(qName.equals("Cat_Desc")){
        item.setCatdesc(buffer.toString());
        Log.v("Description data",buffer.toString());
    }
}

@Override
public void endDocument() throws SAXException {
    Log.v("parsing completed","parsing completed : array size : "+newsList.size());
}

});
}
        catch(Exception ex)
        {
            ex.printStackTrace();
        }

1 个答案:

答案 0 :(得分:2)

您使用WebView#loadDataWithBaseURL(...)设置Cat_Desc值吗?我使用简单的SAXParser测试了您的站点,将输出转储到loadDataWithBaseURL并在WebView中获得了可显示的输出。

enter image description here

更新了所需的标签