亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中如何解析名稱空間

發布時間:2021-07-02 14:29:52 來源:億速云 閱讀:154 作者:Leah 欄目:編程語言

本篇文章為大家展示了Java中如何解析名稱空間,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

如果想要在 XPath 表達式中使用名稱空間,必須提供對此名稱空間 URI 所用前綴的鏈接。

前提條件和示例

本文所有的示例均使用如下這個XML文件:

清單1. 示例XML

Michael SchmidtJohann Wolfgang von GoetheJohann Wolfgang von Goethe

這個 XML 示例包含三個在根元素內聲明的名稱空間,一個在此結構的更深層元素上聲明的名稱空間。您將可以看到這種設置所帶來的差異。

這個 XML 示例的第二個有趣之處在于元素 booklist 具有三個子元素,均名為 book。但是***個子元素具有名稱空間 science,而其他子元素則具有名稱空間 fiction。這意味著這些元素完全有別于 XPath。在接下來的這些例子中,您將可以看到這種特性產生的結果。

示例源代碼中有一個需要注意之處:此代碼沒有針對維護進行優化,只針對可讀性進行了優化。這意味著它將具有某些冗余。輸出通過 System.out.println() 以最為簡單的方式生成。在本文中有關輸出的代碼行均縮寫為 “...”。

理論背景

名稱空間究竟有何意義?為何要如此關注它呢?名稱空間是元素或屬性的標識符的一部分。元素或屬性可以具有相同的本地名稱,但是必須使用不同的名稱空間。它們完全不同。請參考上述示例(science:book 和 fiction:book)。若要綜合來自不同資源的 XML 文件,就需要使用名稱空間來解決命名沖突。以一個 XSLT 文件為例。它包含 XSLT 名稱空間的元素、來自您自己名稱空間的元素以及(通常)XHTML 名稱空間的元素。使用名稱空間,就可以避免具有相同本地名稱的元素所帶來的不確定性。

名稱空間由 URI(在本例中為 http://univNaSpResolver/booklist)定義。為了避免使用這個長字符串,可以定義一個與此 URI 相關聯的前綴(在本例中為 books)。請記住此前綴類似于一個變量:其名稱并不重要。如果兩個前綴引用相同的 URI,那么被加上前綴的元素的名稱空間將是相同的(請參見 清單 5 中的示例 1)。

XPath 表達式使用前綴(比如 books:booklist/science:book)并且您必須提供與每個前綴相關聯的 URI。這時,就需要使用 NamespaceContext。它恰好能夠實現此目的。

本文給出了提供前綴和 URI 之間的映射的不同方式。

在此 XML 文件中,映射由類似 xmlns:books="http://univNaSpResolver/booklist" 這樣的 xmlns 屬性或 xmlns="http://univNaSpResolver/book"(默認名稱空間)提供。

提供名稱空間解析的必要性

如果 XML 使用了名稱空間,若不提供 NamespaceContext,那么 XPath 表達式將會失效。清單 2 中的示例 0 充分展示了這一點。其中的 XPath 對象在所加載的 XML 文檔之上構建和求值。首先,嘗試不用任何名稱空間前綴(result1)編寫此表達式。之后,再用名稱空間前綴(result2)編寫此表達式。

清單 2. 無名稱空間解析的示例 0

private static void example0(Document example)
            throws XPathExpressionException, TransformerException {
        sysout("\n*** Zero example - no namespaces provided ***");

        XPath xPath = XPathFactory.newInstance().newXPath();

...
        NodeList result1 = (NodeList) xPath.evaluate("booklist/book", example,
                XPathConstants.NODESET);
...
        NodeList result2 = (NodeList) xPath.evaluate(
                "books:booklist/science:book", example, XPathConstants.NODESET);
...
    }

輸出如下所示。

清單 3. 示例 0 的輸出

*** Zero example - no namespaces provided ***
First try asking without namespace prefix:
--> booklist/book
Result is of length 0
Then try asking with namespace prefix:
--> books:booklist/science:book
Result is of length 0
The expression does not work in both cases.

在兩種情況下,XPath 求值并不返回任何節點,而且也沒有任何異常。XPath 找不到節點,因為缺少前綴到 URI 的映射。

硬編碼的名稱空間解析

也可以以硬編碼的值來提供名稱空間,類似于 清單 4 中的類:

清單 4. 硬編碼的名稱空間解析

public class HardcodedNamespaceResolver implements NamespaceContext {

    /**
     * This method returns the uri for all prefixes needed. Wherever possible
     * it uses XMLConstants.
     * 
     * @param prefix
     * @return uri
     */
    public String getNamespaceURI(String prefix) {
        if (prefix == null) {
            throw new IllegalArgumentException("No prefix provided!");
        } else if (prefix.equals(XMLConstants.DEFAULT_NS_PREFIX)) {
            return "http://univNaSpResolver/book";
        } else if (prefix.equals("books")) {
            return "http://univNaSpResolver/booklist";
        } else if (prefix.equals("fiction")) {
            return "http://univNaSpResolver/fictionbook";
        } else if (prefix.equals("technical")) {
            return "http://univNaSpResolver/sciencebook";
        } else {
            return XMLConstants.NULL_NS_URI;
        }
    }

    public String getPrefix(String namespaceURI) {
        // Not needed in this context.
        return null;
    }

    public Iterator getPrefixes(String namespaceURI) {
        // Not needed in this context.
        return null;
    }

}

請注意名稱空間 http://univNaSpResolver/sciencebook 被綁定到了前綴 technical(不是之前的 science)。結果將可以在隨后的 示例(清單 6)中看到。在 清單 5 中,使用此解析器的代碼還使用了新的前綴。

清單 5. 具有硬編碼名稱空間解析的示例 1

private static void example1(Document example)
            throws XPathExpressionException, TransformerException {
        sysout("\n*** First example - namespacelookup hardcoded ***");

        XPath xPath = XPathFactory.newInstance().newXPath();
        xPath.setNamespaceContext(new HardcodedNamespaceResolver());

...
        NodeList result1 = (NodeList) xPath.evaluate(
                "books:booklist/technical:book", example,
                XPathConstants.NODESET);
...
        NodeList result2 = (NodeList) xPath.evaluate(
                "books:booklist/fiction:book", example, XPathConstants.NODESET);
...
        String result = xPath.evaluate("books:booklist/technical:book/:author",
                example);
...
    }

如下是此示例的輸出。

清單 6. 示例 1 的輸出

*** First example - namespacelookup hardcoded ***
Using any namespaces results in a NodeList:
--> books:booklist/technical:book
Number of Nodes: 1
Michael Schmidt--> books:booklist/fiction:book
Number of Nodes: 2
Johann Wolfgang von GoetheJohann Wolfgang von GoetheThe default namespace works also:
--> books:booklist/technical:book/:author
Michael Schmidt

如您所見,XPath 現在找到了節點。好處是您可以如您所希望的那樣重命名前綴,我對前綴 science 就是這么做的。XML 文件包含前綴 science,而 XPath 則使用了另一個前綴 technical。由于這些 URI 都是相同的,所以節點均可被 XPath 找到。不利之處是您必須要在多個地方(XML、XSD、 XPath 表達式和此名稱空間的上下文)維護名稱空間。

從文檔讀取名稱空間

名稱空間及其前綴均存檔在此 XML 文件內,因此可以從那里使用它們。實現此目的的最為簡單的方式是將這個查找指派給該文檔。

清單 7. 從文檔直接進行名稱空間解析

public class UniversalNamespaceResolver implements NamespaceContext {
    // the delegate
    private Document sourceDocument;

    /**
     * This constructor stores the source document to search the namespaces in
     * it.
     * 
     * @param document
     *            source document
     */
    public UniversalNamespaceResolver(Document document) {
        sourceDocument = document;
    }

    /**
     * The lookup for the namespace uris is delegated to the stored document.
     * 
     * @param prefix
     *            to search for
     * @return uri
     */
    public String getNamespaceURI(String prefix) {
        if (prefix.equals(XMLConstants.DEFAULT_NS_PREFIX)) {
            return sourceDocument.lookupNamespaceURI(null);
        } else {
            return sourceDocument.lookupNamespaceURI(prefix);
        }
    }

    /**
     * This method is not needed in this context, but can be implemented in a
     * similar way.
     */
    public String getPrefix(String namespaceURI) {
        return sourceDocument.lookupPrefix(namespaceURI);
    }

    public Iterator getPrefixes(String namespaceURI) {
        // not implemented yet
        return null;
    }

}

請注意如下這些事項:

?如果文檔在使用 XPath 前已更改,那么此更改還將反應在名稱空間的這個查找上,因為指派是在需要的時候通過使用文檔的當前版本完成的。

?對名稱空間或前綴的查找在所用節點的祖先節點完成,在我們的例子中,即節點 sourceDocument。這意味著,借助所提供的代碼,您只需在根節點上聲明此名稱空間。在我們的示例中,名稱空間 science 沒有被找到。

?此查找在 XPath 求值時被調用,因此它會消耗一些額外的時間。

如下是示例代碼:

清單 8. 從文檔直接進行名稱空間解析的示例 2

private static void example2(Document example)
            throws XPathExpressionException, TransformerException {
        sysout("\n*** Second example - namespacelookup delegated to document ***");

        XPath xPath = XPathFactory.newInstance().newXPath();
        xPath.setNamespaceContext(new UniversalNamespaceResolver(example));

        try {
...
            NodeList result1 = (NodeList) xPath.evaluate(
                    "books:booklist/science:book", example,
                    XPathConstants.NODESET);
...
        } catch (XPathExpressionException e) {
...
        }
...
        NodeList result2 = (NodeList) xPath.evaluate(
                "books:booklist/fiction:book", example, XPathConstants.NODESET);
...
        String result = xPath.evaluate(
                "books:booklist/fiction:book[1]/:author", example);
...
    }

此示例的輸出為:

清單 9. 示例 2 的輸出

*** Second example - namespacelookup delegated to document ***
Try to use the science prefix: no result
--> books:booklist/science:book
The resolver only knows namespaces of the first level!
To be precise: Only namespaces above the node, passed in the constructor.
The fiction namespace is such a namespace:
--> books:booklist/fiction:book
Number of Nodes: 2
Johann Wolfgang von GoetheJohann Wolfgang von GoetheThe default namespace works also:
--> books:booklist/fiction:book[1]/:author
Johann Wolfgang von Goethe

正如輸出所示,在 book 元素上聲明的、具有前綴 science 的名稱空間并未被解析。求值方法Java異常拋出了一個 XPathExpressionException。要解決這個問題,需要從文檔提取節點 science:book 并將此節點用作代表(delegate)。但是這將意味著對此文檔要進行額外的解析,而且也不優雅。

從文檔讀取名稱空間并緩存它們

NamespaceContext 的下一個版本要稍好一些。它只在構造函數內提前讀取一次名稱空間。對一個名稱空間的每次調用均回應自緩存。這樣一來,文檔內的更改就變得無關緊要,因為名稱空間列表在 Java 對象創建之時就已被緩存。

清單 10. 從文檔緩存名稱空間解析

public class UniversalNamespaceCache implements NamespaceContext {
    private static final String DEFAULT_NS = "DEFAULT";
    private Mapprefix2Uri = new HashMap();
    private Mapuri2Prefix = new HashMap();

    /**
     * This constructor parses the document and stores all namespaces it can
     * find. If toplevelOnly is true, only namespaces in the root are used.
     * 
     * @param document
     *            source document
     * @param toplevelOnly
     *            restriction of the search to enhance performance
     */
    public UniversalNamespaceCache(Document document, boolean toplevelOnly) {
        examineNode(document.getFirstChild(), toplevelOnly);
        System.out.println("The list of the cached namespaces:");
        for (String key : prefix2Uri.keySet()) {
            System.out
                    .println("prefix " + key + ": uri " + prefix2Uri.get(key));
        }
    }

    /**
     * A single node is read, the namespace attributes are extracted and stored.
     * 
     * @param node
     *            to examine
     * @param attributesOnly,
     *            if true no recursion happens
     */
    private void examineNode(Node node, boolean attributesOnly) {
        NamedNodeMap attributes = node.getAttributes();
        for (int i = 0; i < attributes.getLength(); i++) {
            Node attribute = attributes.item(i);
            storeAttribute((Attr) attribute);
        }

        if (!attributesOnly) {
            NodeList chields = node.getChildNodes();
            for (int i = 0; i < chields.getLength(); i++) {
                Node chield = chields.item(i);
                if (chield.getNodeType() == Node.ELEMENT_NODE)
                    examineNode(chield, false);
            }
        }
    }

    /**
     * This method looks at an attribute and stores it, if it is a namespace
     * attribute.
     * 
     * @param attribute
     *            to examine
     */
    private void storeAttribute(Attr attribute) {
        // examine the attributes in namespace xmlns
        if (attribute.getNamespaceURI() != null
                && attribute.getNamespaceURI().equals(
                        XMLConstants.XMLNS_ATTRIBUTE_NS_URI)) {
            // Default namespace xmlns="uri goes here"
            if (attribute.getNodeName().equals(XMLConstants.XMLNS_ATTRIBUTE)) {
                putInCache(DEFAULT_NS, attribute.getNodeValue());
            } else {
                // The defined prefixes are stored here
                putInCache(attribute.getLocalName(), attribute.getNodeValue());
            }
        }

    }

    private void putInCache(String prefix, String uri) {
        prefix2Uri.put(prefix, uri);
        uri2Prefix.put(uri, prefix);
    }

    /**
     * This method is called by XPath. It returns the default namespace, if the
     * prefix is null or "".
     * 
     * @param prefix
     *            to search for
     * @return uri
     */
    public String getNamespaceURI(String prefix) {
        if (prefix == null || prefix.equals(XMLConstants.DEFAULT_NS_PREFIX)) {
            return prefix2Uri.get(DEFAULT_NS);
        } else {
            return prefix2Uri.get(prefix);
        }
    }

    /**
     * This method is not needed in this context, but can be implemented in a
     * similar way.
     */
    public String getPrefix(String namespaceURI) {
        return uri2Prefix.get(namespaceURI);
    }

    public Iterator getPrefixes(String namespaceURI) {
        // Not implemented
        return null;
    }

}

請注意在代碼中有一個調試輸出。每個節點的屬性均被檢查和存儲。但子節點不被檢查,因為構造函數內的布爾值 toplevelOnly 被設置為 true。如果此布爾值被設為 false,那么子節點的檢查將會在屬性存儲完畢后開始。有關此代碼,有一點需要注意:在 DOM 中,***個節點代表整個文檔,所以,要讓元素 book 讀取這些名稱空間,必須訪問子節點剛好一次。

在這種情況下,使用 NamespaceContext 非常簡單:

清單 11. 具有緩存了的名稱空間解析的示例 3(只面向***)

private static void example3(Document example)
            throws XPathExpressionException, TransformerException {
        sysout("\n*** Third example - namespaces of toplevel node cached ***");

        XPath xPath = XPathFactory.newInstance().newXPath();
        xPath.setNamespaceContext(new UniversalNamespaceCache(example, true));

        try {
...
            NodeList result1 = (NodeList) xPath.evaluate(
                    "books:booklist/science:book", example,
                    XPathConstants.NODESET);
...
        } catch (XPathExpressionException e) {
...
        }
...
        NodeList result2 = (NodeList) xPath.evaluate(
                "books:booklist/fiction:book", example, XPathConstants.NODESET);
...
        String result = xPath.evaluate(
                "books:booklist/fiction:book[1]/:author", example);
...
    }

這會導致如下輸出:

清單 12. 示例 3 的輸出

*** Third example - namespaces of toplevel node cached ***
The list of the cached namespaces:
prefix DEFAULT: uri http://univNaSpResolver/book
prefix fiction: uri http://univNaSpResolver/fictionbook
prefix books: uri http://univNaSpResolver/booklist
Try to use the science prefix:
--> books:booklist/science:book
The cache only knows namespaces of the first level!
The fiction namespace is such a namespace:
--> books:booklist/fiction:book
Number of Nodes: 2
Johann Wolfgang von GoetheJohann Wolfgang von GoetheThe default namespace works also:
--> books:booklist/fiction:book[1]/:author
Johann Wolfgang von Goethe

上述代碼只找到了根元素的名稱空間。更準確的說法是:此節點的名稱空間被構造函數傳遞給了方法 examineNode。這會加速構造函數的運行,因它無需迭代整個文檔。不過,正如您從輸出看到的,science 前綴不能被解析。XPath 表達式導致了一個異常(XPathExpressionException)。

從文檔及其所有元素讀取名稱空間并對之進行緩存

此版本將從這個 XML 文件讀取所有名稱空間聲明。現在,即便是前綴 science 上的 XPath 也是有效的。但是有一種情況讓此版本有些復雜:如果一個前綴重載(在不同 URI 上的嵌套元素內聲明),所找到的***一個將會 “勝出”。在實際中,這通常不成問題。

在本例中,NamespaceContext 的使用與前一個示例相同。構造函數內的布爾值 toplevelOnly 必須被設置為 false。

清單 13. 具有緩存了的名稱空間解析的示例 4(面向所有級別)

private static void example4(Document example)
            throws XPathExpressionException, TransformerException {
        sysout("\n*** Fourth example - namespaces all levels cached ***");

        XPath xPath = XPathFactory.newInstance().newXPath();
        xPath.setNamespaceContext(new UniversalNamespaceCache(example, false));
...
        NodeList result1 = (NodeList) xPath.evaluate(
                "books:booklist/science:book", example, XPathConstants.NODESET);
...
        NodeList result2 = (NodeList) xPath.evaluate(
                "books:booklist/fiction:book", example, XPathConstants.NODESET);
...
        String result = xPath.evaluate(
                "books:booklist/fiction:book[1]/:author", example);
...
    }

其輸出結果如下:

清單 14. 示例 4 的輸出

*** Fourth example - namespaces all levels cached ***
The list of the cached namespaces:
prefix science: uri http://univNaSpResolver/sciencebook
prefix DEFAULT: uri http://univNaSpResolver/book
prefix fiction: uri http://univNaSpResolver/fictionbook
prefix books: uri http://univNaSpResolver/booklist
Now the use of the science prefix works as well:
--> books:booklist/science:book
Number of Nodes: 1
Michael SchmidtThe fiction namespace is resolved:
--> books:booklist/fiction:book
Number of Nodes: 2
Johann Wolfgang von GoetheJohann Wolfgang von GoetheThe default namespace works also:
--> books:booklist/fiction:book[1]/:author
Johann Wolfgang von Goethe

結束語

實現名稱空間解析,在Java中有幾種方式可供選擇,這些方式大都好于硬編碼的實現方式:

?如果示例很小并且所有名稱空間均位于頂部元素內,指派到此文檔的方式將會十分有效。

?如果 XML 文件較大且具有深層嵌套和多個 XPath 求值,***是緩存名稱空間的列表。

?但是如果您無法控制 XML 文件,并且別人可以發送給您任何前綴,***是獨立于他人的選擇。您可以編碼實現您自己的名稱空間解析,如示例 1 (HardcodedNamespaceResolver)所示,并將它們用于您的 XPath 表達式。

上述內容就是Java中如何解析名稱空間,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

芜湖市| 固始县| 凤阳县| 宁强县| 萨迦县| 兴隆县| 静乐县| 迭部县| 进贤县| 五家渠市| 郓城县| 九江县| 隆化县| 邳州市| 大英县| 九龙城区| 桂东县| 永昌县| 阳山县| 杭锦旗| 廊坊市| 广平县| 阜宁县| 平江县| 绩溪县| 安化县| 巴林右旗| 漾濞| 临潭县| 渝北区| 沈阳市| 兴和县| 郴州市| 承德市| 江陵县| 呼伦贝尔市| 荃湾区| 宁津县| 紫阳县| 宝山区| 方城县|