本文整理匯總了Java中org.w3c.dom.Node.setPrefix方法的典型用法代碼示例。如果您正苦於以下問題:Java Node.setPrefix方法的具體用法?Java Node.setPrefix怎麽用?Java Node.setPrefix使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.w3c.dom.Node
的用法示例。
在下文中一共展示了Node.setPrefix方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: processSingleNodeNamespace
import org.w3c.dom.Node; //導入方法依賴的package包/類
/**
* Update the namespace of a given node to work with a given document.
*
* @param node the node to update
* @param document the new document
*
* @return false if the attribute is to be dropped
*/
private static boolean processSingleNodeNamespace(Node node, Document document) {
if ("xmlns".equals(node.getLocalName())) {
return false;
}
String ns = node.getNamespaceURI();
if (ns != null) {
NamedNodeMap docAttributes = document.getAttributes();
String prefix = getPrefixForNs(docAttributes, ns);
if (prefix == null) {
prefix = getUniqueNsAttribute(docAttributes);
Attr nsAttr = document.createAttribute(prefix);
nsAttr.setValue(ns);
document.getChildNodes().item(0).getAttributes().setNamedItem(nsAttr);
}
// set the prefix on the node, by removing the xmlns: start
prefix = prefix.substring(6);
node.setPrefix(prefix);
}
return true;
}
示例2: changePrefix
import org.w3c.dom.Node; //導入方法依賴的package包/類
/**
* Changes the namespace prefix of all nodes, recursively.
*
* @param node The node to process, as well as all it's descendants. Can be null.
* @param srcPrefix The prefix to match.
* @param destPrefix The new prefix to replace with.
*/
private void changePrefix(Node node, String srcPrefix, String destPrefix) {
for (; node != null; node = node.getNextSibling()) {
if (srcPrefix.equals(node.getPrefix())) {
node.setPrefix(destPrefix);
}
Node child = node.getFirstChild();
if (child != null) {
changePrefix(child, srcPrefix, destPrefix);
}
}
}
示例3: toXMLDocument
import org.w3c.dom.Node; //導入方法依賴的package包/類
public Document toXMLDocument() {
Document doc = null;
try {
doc = BUILDER_FACTORY.newDocumentBuilder().newDocument();
Node rpcReply = doc.createElementNS( URN_IETF_PARAMS_XML_NS_NETCONF_BASE_1_0, RPC_REPLY_KEY);
doc.appendChild( rpcReply );
Node rpcError = doc.createElementNS( URN_IETF_PARAMS_XML_NS_NETCONF_BASE_1_0, RPC_ERROR );
rpcReply.appendChild( rpcError );
rpcError.appendChild( createTextNode( doc, ERROR_TYPE, getErrorType().getTypeValue() ) );
rpcError.appendChild( createTextNode( doc, ERROR_TAG, getErrorTag().getTagValue() ) );
rpcError.appendChild( createTextNode( doc, ERROR_SEVERITY, getErrorSeverity().getSeverityValue() ) );
rpcError.appendChild( createTextNode( doc, ERROR_MESSAGE, getLocalizedMessage() ) );
Map<String, String> errorInfoMap = getErrorInfo();
if( errorInfoMap != null && !errorInfoMap.isEmpty() ) {
/*
* <error-info>
* <bad-attribute>message-id</bad-attribute>
* <bad-element>rpc</bad-element>
* </error-info>
*/
Node errorInfoNode = doc.createElementNS( URN_IETF_PARAMS_XML_NS_NETCONF_BASE_1_0, ERROR_INFO );
errorInfoNode.setPrefix( rpcReply.getPrefix() );
rpcError.appendChild( errorInfoNode );
for ( Entry<String, String> entry : errorInfoMap.entrySet() ) {
errorInfoNode.appendChild( createTextNode( doc, entry.getKey(), entry.getValue() ) );
}
}
}
catch( final ParserConfigurationException e ) {
// this shouldn't happen
LOG.error("Error outputting to XML document", e);
}
return doc;
}