您的位置:首页 > 编程语言 > Java开发

DocumentHelper用法

2013-11-12 00:52 435 查看
注意:Node是element的父类。

public static void main(String args[]){

String s="<?xml version=\"1.0\" encoding=\"gbk\" ?>" +

"<smartresult>" +

"<product type=\"identitycard\">" +

"<code>440305198012255411</code>" +

"<location>sdfsdf</location>" +

"<birthday>19801225</birthday>" +

"<gender>m</gender></product>" +

"</smartresult>";

                try {

      

      

       Document doc = DocumentHelper.parseText(s);

       Node root=doc.getRootElement();

       System.out.println(root.getName());

      

      

      

   

} catch (Exception e) {

e.printStackTrace();

}

}

一、DocumentHelper类的主要静态方法:

1.parseText

public static Document parseText(String text)

                          throws DocumentException

    parseText parses the given text as an XML document and returns the newly created Document.

    Parameters:

        text - the XML text to be parsed

    Returns:

        a newly parsed Document

    Throws:

        DocumentException - if the document could not be parsed

二、Document接口的主要方法:

1.getRootElement

public Element getRootElement()

    Returns the root Element for this document.

    Returns:

        the root element for this document

三、Element接口的主要方法:

1.getText(这个是element接口的方法)

返回当前元素的文本内容,如果元素没有文本内容,则返回空。

public String getText()

    Returns the text value of this element without recursing through child elements. This method iterates through all Text,CDATA and Entitynodes that this element contains and

appends the text values together.

    Specified by:

        getText in interface Node

    Returns:

        the textual content of this Element. Child elements are not navigated. This method does not return null;

2.getName(这个是node接口的方法,由于element继承node,所有,element也可以调用该方法)

public String getName()

    getName returns the name of this node. This is the XML local name of the element, attribute, entity or processing instruction. For CDATA and Text nodes this method will

return null.

    Returns:

        the XML name of this node

四、Document类的继承结构

public interface Document

extends Branch

public interface Branch

extends Node

Document接口继承Branch,Branch接口又继承Node接口,而Node接口有个方法,经常用到如下:

List<Node> selectNodes(String xpathExpression)

selectNodes evaluates an XPath expression and returns the result as a List of Node instances or String instances depending on the XPath expression.

Parameters:

xpathExpression - is the XPath expression to be evaluated

Returns:

the list of Node or String instances depending on the XPath expression
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  java基础