亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 開發 > Java > 正文

Java API編寫自己的NamespaceContext

2024-07-21 02:04:32
字體:
來源:轉載
供稿:網友
如果想要在 xpath 表達式中使用名稱空間,必須提供對此名稱空間 uri 所用前綴的鏈接。本文介紹了向名稱空間映射提供前綴的三種不同方式。本文亦包含了示例代碼以方便您編寫自己的 namespacecontext。

 

前提條件和示例

 

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

 

清單1. 示例xml

<?xml version="1.0" encoding="utf-8"?><books:booklist  xmlns:books="http://univnaspresolver/booklist"  xmlns="http://univnaspresolver/book"  xmlns:fiction="http://univnaspresolver/fictionbook">  <science:book xmlns:science="http://univnaspresolver/sciencebook">    <title>learning xpath</title>    <author>michael schmidt</author>  </science:book>  <fiction:book>    <title>faust i</title>    <author>johann wolfgang von goethe</author>  </fiction:book>  <fiction:book>    <title>faust ii</title>    <author>johann wolfgang von goethe</author>  </fiction:book></books:booklist>

 

這個 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"(默認名稱空間)提供。

|||

|||

|||

 

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

 

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

 

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

public class universalnamespacecache implements namespacecontext {    private static final string default_ns = "default";    private map<string, string> prefix2uri = new hashmap<string, string>();    private map<string, string> uri2prefix = new hashmap<string, string>();    /**     * 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/bookprefix fiction: uri http://univnaspresolver/fictionbookprefix books: uri http://univnaspresolver/booklisttry to use the science prefix:--> books:booklist/science:bookthe cache only knows namespaces of the first level!the fiction namespace is such a namespace:--> books:booklist/fiction:booknumber of nodes: 2<?xml version="1.0" encoding="utf-8"?>  <fiction:book xmlns:fiction="http://univnaspresolver/fictionbook">    <title xmlns="http://univnaspresolver/book">faust i</title>    <author xmlns="http://univnaspresolver/book">johann wolfgang von goethe</author>  </fiction:book><?xml version="1.0" encoding="utf-8"?>  <fiction:book xmlns:fiction="http://univnaspresolver/fictionbook">    <title xmlns="http://univnaspresolver/book">faust ii</title>    <author xmlns="http://univnaspresolver/book">johann wolfgang von goethe</author>  </fiction:book>the default namespace works also:--> books:booklist/fiction:book[1]/:authorjohann wolfgang von goethe

 

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

|||

 

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

 

此版本將從這個 xml 文件讀取所有名稱空間聲明?,F在,即便是前綴 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/sciencebookprefix default: uri http://univnaspresolver/bookprefix fiction: uri http://univnaspresolver/fictionbookprefix books: uri http://univnaspresolver/booklistnow the use of the science prefix works as well:--> books:booklist/science:booknumber of nodes: 1<?xml version="1.0" encoding="utf-8"?>  <science:book xmlns:science="http://univnaspresolver/sciencebook">    <title xmlns="http://univnaspresolver/book">learning xpath</title>    <author xmlns="http://univnaspresolver/book">michael schmidt</author>  </science:book>the fiction namespace is resolved:--> books:booklist/fiction:booknumber of nodes: 2<?xml version="1.0" encoding="utf-8"?>  <fiction:book xmlns:fiction="http://univnaspresolver/fictionbook">    <title xmlns="http://univnaspresolver/book">faust i</title>    <author xmlns="http://univnaspresolver/book">johann wolfgang von goethe</author>  </fiction:book><?xml version="1.0" encoding="utf-8"?>  <fiction:book xmlns:fiction="http://univnaspresolver/fictionbook">    <title xmlns="http://univnaspresolver/book">faust ii</title>    <author xmlns="http://univnaspresolver/book">johann wolfgang von goethe</author>  </fiction:book>the default namespace works also:--> books:booklist/fiction:book[1]/:authorjohann wolfgang von goethe

 

結束語

 

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

 

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

•如果 xml 文件較大且具有深層嵌套和多個 xpath 求值,最好是緩存名稱空間的列表。

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

在上述這些情況下,解析自此 xml 文件的 namespacecontext 能夠讓您的代碼更少、并且更為通用。

 

從文檔讀取名稱空間

 

名稱空間及其前綴均存檔在此 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:bookthe 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:booknumber of nodes: 2<?xml version="1.0" encoding="utf-8"?>  <fiction:book xmlns:fiction="http://univnaspresolver/fictionbook">    <title xmlns="http://univnaspresolver/book">faust i</title>    <author xmlns="http://univnaspresolver/book">johann wolfgang von goethe</author>  </fiction:book><?xml version="1.0" encoding="utf-8"?>  <fiction:book xmlns:fiction="http://univnaspresolver/fictionbook">    <title xmlns="http://univnaspresolver/book">faust ii</title>    <author xmlns="http://univnaspresolver/book">johann wolfgang von goethe</author>  </fiction:book>the default namespace works also:--> books:booklist/fiction:book[1]/:authorjohann wolfgang von goethe

 

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

 

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

 

如果 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/bookresult is of length 0then try asking with namespace prefix:--> books:booklist/science:bookresult is of length 0the 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:booknumber of nodes: 1<?xml version="1.0" encoding="utf-8"?>  <science:book xmlns:science="http://univnaspresolver/sciencebook">    <title xmlns="http://univnaspresolver/book">learning xpath</title>    <author xmlns="http://univnaspresolver/book">michael schmidt</author>  </science:book>--> books:booklist/fiction:booknumber of nodes: 2<?xml version="1.0" encoding="utf-8"?>  <fiction:book xmlns:fiction="http://univnaspresolver/fictionbook">    <title xmlns="http://univnaspresolver/book">faust i</title>    <author xmlns="http://univnaspresolver/book">johann wolfgang von goethe</author>  </fiction:book><?xml version="1.0" encoding="utf-8"?>  <fiction:book xmlns:fiction="http://univnaspresolver/fictionbook">    <title xmlns="http://univnaspresolver/book">faust ii</title>    <author xmlns="http://univnaspresolver/book">johann wolfgang von goethe</author>  </fiction:book>the default namespace works also:--> books:booklist/technical:book/:authormichael schmidt

 

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
欧美日韩一区二区在线| 日本成人黄色片| 97香蕉超级碰碰久久免费的优势| 国产精品爱啪在线线免费观看| 日本一本a高清免费不卡| 国产成人精品日本亚洲| 国产午夜精品麻豆| 成人xvideos免费视频| 国产精品电影久久久久电影网| 欧美性视频在线| 国产成人av网址| 国产精品免费一区豆花| 日韩精品中文字| 中文字幕精品在线视频| 97在线视频免费播放| 亚洲欧美日韩中文在线| 午夜精品一区二区三区在线视频| 欧美一级bbbbb性bbbb喷潮片| 4438全国成人免费| 午夜精品福利在线观看| 欧美电影在线播放| 国产精品久久久久77777| 性欧美视频videos6一9| 日韩av中文字幕在线播放| 国产精品白丝jk喷水视频一区| 欧美网站在线观看| 亚洲福利视频专区| 国产精品欧美日韩一区二区| 日韩美女免费观看| 国产日产欧美a一级在线| 欧美一区亚洲一区| 日本一欧美一欧美一亚洲视频| xxxxx91麻豆| 久久久久久久久久久久av| 国内外成人免费激情在线视频网站| 亚洲视频在线观看免费| 欧美黄色片免费观看| 亚洲xxxxx性| 成人国产精品一区二区| 亚洲国产日韩一区| 亚洲视频自拍偷拍| 亚洲成人av资源网| 91久久在线播放| 欧美日韩一二三四五区| 欧美色播在线播放| 亚洲色图美腿丝袜| 国产免费亚洲高清| 日韩一中文字幕| 91在线观看欧美日韩| 亚洲最大av在线| 久久精品国产久精国产一老狼| 人人澡人人澡人人看欧美| 成人免费看吃奶视频网站| 久久福利视频导航| 国产日韩av在线| 4438全国亚洲精品在线观看视频| 一区二区三区视频免费| 日韩在线视频线视频免费网站| 九九热最新视频//这里只有精品| 欧美成人久久久| 俺也去精品视频在线观看| 亚洲人成亚洲人成在线观看| 一本一本久久a久久精品综合小说| 青青草99啪国产免费| 久久午夜a级毛片| 亚洲性猛交xxxxwww| 国产乱人伦真实精品视频| 亚洲天堂男人的天堂| www.欧美精品| 九九久久久久99精品| 色哟哟亚洲精品一区二区| 亚洲成av人影院在线观看| 亚洲欧美日韩直播| 国产成人精品视频| 亚洲欧美日韩视频一区| 国产精品91在线观看| 国产成人精品视频在线| 国产精品免费看久久久香蕉| 欧洲亚洲妇女av| 亚洲激情视频在线播放| 亚州国产精品久久久| 久久久久中文字幕2018| 亚洲第一区第一页| 57pao成人国产永久免费| 日韩禁在线播放| 亚洲精品videossex少妇| 亚洲aaaaaa| 精品久久久久久中文字幕| 中文字幕欧美日韩| 国产在线精品一区免费香蕉| 亚洲欧美另类在线观看| 国产成人精品网站| 91热精品视频| 国产精品国产福利国产秒拍| 亚洲丝袜在线视频| 国产精品成人免费视频| 久久久久久这里只有精品| 欧美成人精品在线| 亚洲人成自拍网站| 中文字幕在线国产精品| 亚洲欧美在线看| 国产精品成人av在线| 国产福利视频一区二区| 亚洲欧美日韩在线一区| 国产精品网站视频| 91精品美女在线| 久久黄色av网站| 国产精品视频99| 高清一区二区三区四区五区| 九九热这里只有精品免费看| 欧美精品激情视频| 欧美电影院免费观看| 国产精品久久久亚洲| 亚洲色图25p| 92看片淫黄大片看国产片| 中文字幕精品av| 久久久久久久久网站| 亚洲国产精品va在线| 国产精品视频免费在线观看| 亚洲偷熟乱区亚洲香蕉av| 91亚洲精品在线| 国产中文字幕91| 欧美一级淫片videoshd| 91精品在线观| 欧洲精品毛片网站| 全球成人中文在线| 欧美大片在线免费观看| 操91在线视频| 亚洲永久在线观看| 6080yy精品一区二区三区| 国产精品尤物福利片在线观看| 亚洲天堂免费视频| 欧美一区在线直播| 欧美巨大黑人极品精男| 日韩专区在线播放| 中文字幕免费精品一区高清| 91精品在线一区| 欧美xxxx18国产| www.国产精品一二区| 亚洲一区制服诱惑| 91av视频在线| 国产啪精品视频网站| 57pao国产精品一区| 两个人的视频www国产精品| 精品自拍视频在线观看| 69av视频在线播放| 国产99久久久欧美黑人| 欧美亚洲另类视频| 久久电影一区二区| 久久人人爽人人爽人人片亚洲| 一区二区三区四区视频| 欧美另类99xxxxx| 国产精品网红直播| 一区三区二区视频| 国产精品日韩精品| 久久久亚洲国产天美传媒修理工| 欧美伦理91i| 欧美诱惑福利视频| 日韩亚洲在线观看| 日韩一区二区av| 欧洲成人在线视频| 国产精品入口夜色视频大尺度| 国产一区二区三区久久精品| 国产成人一区二区三区|