当前位置: 首页>>代码示例>>Java>>正文


Java XPathExpressionException.printStackTrace方法代码示例

本文整理汇总了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;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:25,代码来源:TestFinder.java

示例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);
    }
}
 
开发者ID:hulang1024,项目名称:PTEAssistant,代码行数:9,代码来源:XPaths.java

示例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;
}
 
开发者ID:nasa,项目名称:OpenVSP3Plugin,代码行数:10,代码来源:XPathUtil.java

示例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;
}
 
开发者ID:skarna1,项目名称:javaportfolio,代码行数:40,代码来源:SeligsonQuoteFetcher.java

示例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());
}
   }
 
开发者ID:wwu-pi,项目名称:tap17-muggl-javaee,代码行数:30,代码来源:SolverManagerConfig.java


注:本文中的javax.xml.xpath.XPathExpressionException.printStackTrace方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。