Синтаксический анализ XML в Blackberry - PullRequest
1 голос
/ 05 сентября 2011

Я хочу разобрать XML, который я получил по этому URL

, и я делаю такой анализ

connection = (HttpConnection)Connector.open(_url);
//Build Documents Based on the File
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
builder.isValidating();
Document document = builder.parse(connection.openInputStream());
Element rootElement = document.getDocumentElement();
rootElement.normalize();
NodeList list = document.getElementsByTagName("current_conditions");
int check = list.getLength();
for(int i=0;i < check; i++){
    //NodeList children = list.item(i).getChildNodes();
    Node children = list.item(i).getFirstChild();
    String conditionData = new String();
    if (children.getNodeType()!= Node.TEXT_NODE){
        NamedNodeMap child = children.getAttributes();
        if(child.getNamedItem("data")!=null){
            conditionData = child.getNamedItem("data").getNodeValue();
            System.out.println("++++++++++++++++++++++++"+conditionData);
        }
    }           
}

//displayNode( rootElement, 0 );

}catch (Exception e) {
    // TODO: handle exception
    System.err.println("++++++++++++++++++"+e.getMessage());
}

пожалуйста, помогите ...

1 Ответ

1 голос
/ 05 сентября 2011

Ваш list.item (i) может не иметь дочерних элементов, поэтому они будут нулевыми. В любом случае, попробуйте использовать парсер из bb samples. Вот его код: XMLDemo код

...