當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。