本文整理匯總了Java中org.w3c.dom.Node.lookupNamespaceURI方法的典型用法代碼示例。如果您正苦於以下問題:Java Node.lookupNamespaceURI方法的具體用法?Java Node.lookupNamespaceURI怎麽用?Java Node.lookupNamespaceURI使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.w3c.dom.Node
的用法示例。
在下文中一共展示了Node.lookupNamespaceURI方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: lookupNamespaceURI
import org.w3c.dom.Node; //導入方法依賴的package包/類
public String lookupNamespaceURI(Node node, List<? extends Node> pathToRoot) {
String prefix = node.getPrefix();
if (prefix == null) prefix = ""; //NOI18N
String namespace = node.lookupNamespaceURI(prefix);
if (namespace == null) {
boolean skipDeeperNodes = true;
for (Node n : pathToRoot) {
if (skipDeeperNodes) {
// The target node has to be inside of pathToRoot.
// But it can be not a top element of the list.
// It's necessary to skip items until the target node
// isn't found in the list.
if (areSameNodes(n, node)) {
skipDeeperNodes = false;
}
} else {
namespace = n.lookupNamespaceURI(prefix);
if (namespace != null) {
break;
}
}
}
}
return namespace;
}
示例2: getPrefixForW3URIs
import org.w3c.dom.Node; //導入方法依賴的package包/類
private static String getPrefixForW3URIs(String uri, Node node)
{
if ( uri == null || uri.length() == 0)
return "";
if (uri.equals("http://www.w3.org/XML/1998/namespace"))
return "xml";
final String[] w3URIs = {"http://www.w3.org/2001/XMLSchema","http://www.w3.org/2001/XMLSchema-instance"};
final String[] w3Prefix = {"xs","xsi"};
if (w3URIs.length == w3Prefix.length)
{
for (int i = 0; i < w3Prefix.length; i++ )
{
if (uri.equals(w3URIs[i]))
{
String prefix = node.lookupNamespaceURI(w3Prefix[i]);
if ( prefix == null )
return w3Prefix[i];
}
}
}
return "";
}
示例3: lookupNamespaceURI
import org.w3c.dom.Node; //導入方法依賴的package包/類
public static String lookupNamespaceURI( Node node, String prefix )
{
if ( prefix != null && prefix.equals("xml") )
return "http://www.w3.org/XML/1998/namespace";
return node.lookupNamespaceURI( prefix );
}