本文整理汇总了Java中org.dom4j.QName.getNamespaceURI方法的典型用法代码示例。如果您正苦于以下问题:Java QName.getNamespaceURI方法的具体用法?Java QName.getNamespaceURI怎么用?Java QName.getNamespaceURI使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.dom4j.QName
的用法示例。
在下文中一共展示了QName.getNamespaceURI方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: resolveQName
import org.dom4j.QName; //导入方法依赖的package包/类
/**
* Tries to resolve give QName into a "top-level" namespace and prefix. If the
* there is no prefix and the namespace is the default namespace, assign the
* NAMED defaultNamespace.
*
* @param qName Description of the Parameter
* @return Description of the Return Value
* @exception Exception Description of the Exception
*/
private QName resolveQName(QName qName) throws Exception {
String prefix = qName.getNamespacePrefix();
String name = qName.getName();
String uri = qName.getNamespaceURI();
prtln("\n\t resolveQName: ", 1);
prtln("\t\t name: " + name, 1);
prtln("\t\t prefix: " + prefix, 1);
prtln("\t\t uri: " + uri, 1);
Namespace topLevelNS = namespaces.getNSforUri(uri);
if (topLevelNS == null) {
prtlnErr("ERROR: resolveQName could not find top-level namespace for " + uri);
return null;
}
else if (topLevelNS == namespaces.getDefaultNamespace()) {
topLevelNS = namespaces.getNamedDefaultNamespace();
}
return df.createQName(name, topLevelNS);
}
示例2: resolveQName
import org.dom4j.QName; //导入方法依赖的package包/类
/**
* Tries to resolve give QName into a "top-level" namespace and prefix. If the
* there is no prefix and the namespace is the default namespace, assign the
* NAMED defaultNamespace.
*
* @param qName Description of the Parameter
* @return Description of the Return Value
* @exception Exception Description of the Exception
*/
private QName resolveQName(QName qName) throws Exception {
String prefix = qName.getNamespacePrefix();
String name = qName.getName();
String uri = qName.getNamespaceURI();
prtln("\n\t resolveQName: ", 1);
prtln("\t\t name: " + name, 1);
prtln("\t\t prefix: " + prefix, 1);
prtln("\t\t uri: " + uri, 1);
Namespace topLevelNS = namespaces.getNSforUri(uri);
if (topLevelNS == null) {
prtlnErr("ERROR: resolveQName could not find top-level namespace for " + uri);
return null;
}
else if (topLevelNS == namespaces.getDefaultNamespace()) {
topLevelNS = namespaces.getNamedDefaultNamespace();
}
return DocumentHelper.createQName(name, topLevelNS);
}
示例3: doQname
import org.dom4j.QName; //导入方法依赖的package包/类
/**
* NOT YET DOCUMENTED
*
* @param element NOT YET DOCUMENTED
* @return NOT YET DOCUMENTED
*/
public static String doQname(Element element) {
String s = "\tdoQname()";
QName qname = element.getQName();
s += "\n\t\t prefix: " + qname.getNamespacePrefix();
s += "\n\t\t qualifiedName: " + qname.getQualifiedName();
s += "\n\t\t uri(uri): " + qname.getNamespaceURI();
return s;
}