本文整理汇总了Java中javax.xml.xpath.XPathExpressionException.printStackTrace方法的典型用法代码示例。如果您正苦于以下问题:Java XPathExpressionException.printStackTrace方法的具体用法?Java XPathExpressionException.printStackTrace怎么用?Java XPathExpressionException.printStackTrace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.xml.xpath.XPathExpressionException
的用法示例。
在下文中一共展示了XPathExpressionException.printStackTrace方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getExcludeSet
import javax.xml.xpath.XPathExpressionException; //导入方法依赖的package包/类
private static Set<String> getExcludeSet() throws XPathExpressionException {
final String testExcludeList = System.getProperty(TEST_JS_EXCLUDE_LIST);
String[] testExcludeArray = {};
if (testExcludeList != null) {
testExcludeArray = testExcludeList.split(" ");
}
final Set<String> testExcludeSet = new HashSet<>(testExcludeArray.length);
for (final String test : testExcludeArray) {
testExcludeSet.add(test);
}
final String testExcludesFile = System.getProperty(TEST_JS_EXCLUDES_FILE);
if (testExcludesFile != null && !testExcludesFile.isEmpty()) {
try {
loadExcludesFile(testExcludesFile, testExcludeSet);
} catch (final XPathExpressionException e) {
System.err.println("Error: unable to load test excludes from " + testExcludesFile);
e.printStackTrace();
throw e;
}
}
return testExcludeSet;
}
示例2: eval
import javax.xml.xpath.XPathExpressionException; //导入方法依赖的package包/类
public static Object eval(String expr, Document doc, QName returnType) {
try {
return path.evaluate(expr, doc, returnType);
} catch (XPathExpressionException e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
示例3: getElement
import javax.xml.xpath.XPathExpressionException; //导入方法依赖的package包/类
public String getElement(String expression) {
String element = "";
try {
element = xp.evaluate(expression, doc);
} catch (XPathExpressionException e) {
e.printStackTrace();
}
return element;
}
示例4: parseHtml
import javax.xml.xpath.XPathExpressionException; //导入方法依赖的package包/类
public List<Item> parseHtml() {
//System.out.println(getUri());
//System.out.println(getXpath());
//xpath="//table[@border='0' and @cellspacing='1' and @width='630' and @align='left']/tr"
List<Item> items = new ArrayList<>();
try {
org.w3c.dom.NodeList nodes = fetchNodes(
getUri(),
getXpath());
if (nodes != null) {
//System.out.println("Nodes: " + nodes.getLength());
for (int i = 0; i < nodes.getLength(); i++) {
org.w3c.dom.Node tr = nodes.item(i);
Item itemA = new Item();
Item itemB = new Item();
parseRow(itemA, tr, true);
parseRow(itemB, tr, false);
//itemA.print();
//itemB.print();
if (itemA.getTicker() != null) {
items.add(itemA);
}
if (itemB.getTicker() != null) {
items.add(itemB);
}
}
}
} catch (XPathExpressionException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return items;
}
示例5: SolverManagerConfig
import javax.xml.xpath.XPathExpressionException; //导入方法依赖的package包/类
private SolverManagerConfig(){
ConfigReader configReader = ConfigReader.getInstance();
try{
precalculateSolutions = configReader.getTextContent("//TesttoolConfiguration/SolverSystem/General/SolutionPreCalculation/@enabled").equalsIgnoreCase("yes");
listenerNames = configReader.getTextContents("//TesttoolConfiguration/SolverSystem/General/SolverManagerListener[attribute::enabled='yes']/@class");
TesttoolConfig.getLogger().trace("SolverManagerConfig: Listeners read from config file " + Arrays.toString(listenerNames));
NodeList solverNodes = configReader.getNodeList("//TesttoolConfiguration/SolverSystem/SolverList/Solver");
solverInfos = new SolverInfo[solverNodes.getLength()];
for (int i = 0; i < solverNodes.getLength(); i++){
String className = configReader.getTextContent("@class", solverNodes.item(i));
boolean enabled = configReader.getTextContent("@enabled", solverNodes.item(i)).equalsIgnoreCase("yes");
int priority = Integer.parseInt(configReader.getTextContent("@priority", solverNodes.item(i)));
SolverInfo solverInfo = new SolverInfo(className, priority, enabled);
solverInfos[i] = solverInfo;
}
Arrays.sort(solverInfos);
TesttoolConfig.getLogger().debug("SolverManagerConfig: Solvers read from config file " + Arrays.toString(solverInfos) );
} catch (XPathExpressionException xpee){
xpee.printStackTrace();
throw new InternalError(xpee.toString());
}
}