本文整理匯總了Java中org.dom4j.Node.selectSingleNode方法的典型用法代碼示例。如果您正苦於以下問題:Java Node.selectSingleNode方法的具體用法?Java Node.selectSingleNode怎麽用?Java Node.selectSingleNode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.dom4j.Node
的用法示例。
在下文中一共展示了Node.selectSingleNode方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: tryGetItemText
import org.dom4j.Node; //導入方法依賴的package包/類
public static String tryGetItemText(Node node, String itemName, String defaultValue) {
if (node == null)
return defaultValue;
Node item = node.selectSingleNode(itemName);
if (item == null)
return defaultValue;
return item.getText();
}
示例2: getChildText
import org.dom4j.Node; //導入方法依賴的package包/類
private static String getChildText(Node node, String childName) throws PluginException {
Node child = node.selectSingleNode(childName);
if (child == null)
throw new PluginException("Could not find child \"" + childName + "\" for node");
return child.getText();
}