• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java XPathNSResolver类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.w3c.dom.xpath.XPathNSResolver的典型用法代码示例。如果您正苦于以下问题:Java XPathNSResolver类的具体用法?Java XPathNSResolver怎么用?Java XPathNSResolver使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



XPathNSResolver类属于org.w3c.dom.xpath包,在下文中一共展示了XPathNSResolver类的17个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: createExpression

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
/**
* Creates a parsed XPath expression with resolved namespaces. This is
* useful when an expression will be reused in an application since it
* makes it possible to compile the expression string into a more
* efficient internal form and preresolve all namespace prefixes which
* occur within the expression.
*
* @param expression The XPath expression string to be parsed.
* @param resolver The <code>resolver</code> permits translation of
*   prefixes within the XPath expression into appropriate namespace URIs
*   . If this is specified as <code>null</code>, any namespace prefix
*   within the expression will result in <code>DOMException</code>
*   being thrown with the code <code>NAMESPACE_ERR</code>.
* @return The compiled form of the XPath expression.
* @exception XPathException
*   INVALID_EXPRESSION_ERR: Raised if the expression is not legal
*   according to the rules of the <code>XPathEvaluator</code>i
* @exception DOMException
*   NAMESPACE_ERR: Raised if the expression contains namespace prefixes
*   which cannot be resolved by the specified
*   <code>XPathNSResolver</code>.
*
    * @see org.w3c.dom.xpath.XPathEvaluator#createExpression(String, XPathNSResolver)
    */
   public XPathExpression createExpression(
           String expression,
           XPathNSResolver resolver)
           throws XPathException, DOMException {

           try {

                   // If the resolver is null, create a dummy prefix resolver
                   XPath xpath =  new XPath(expression,null,
                        ((null == resolver) ? new DummyPrefixResolver() : ((PrefixResolver)resolver)),
                         XPath.SELECT);

       return new XPathExpressionImpl(xpath, m_doc);

           } catch (TransformerException e) {
                   // Need to pass back exception code DOMException.NAMESPACE_ERR also.
                   // Error found in DOM Level 3 XPath Test Suite.
                   if(e instanceof XPathStylesheetDOM3Exception)
                           throw new DOMException(DOMException.NAMESPACE_ERR,e.getMessageAndLocation());
                   else
                           throw new XPathException(XPathException.INVALID_EXPRESSION_ERR,e.getMessageAndLocation());

           }
   }
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:49,代码来源:XPathEvaluatorImpl.java


示例2: DomXPathExpression

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
DomXPathExpression(DomDocument doc, String expression,
                   XPathNSResolver resolver)
  throws XPathException
{
  this.doc = doc;
  this.resolver = resolver;

              XPathFactory factory = XPathFactory.newInstance();
              XPath xpath = factory.newXPath();
              if (resolver != null)
                {
                              xpath.setNamespaceContext(new DomNSResolverContext(resolver));
                }
  try
    {
      this.expression = xpath.compile(expression);
    }
  catch (XPathExpressionException e)
    {
      throw new XPathException(XPathException.INVALID_EXPRESSION_ERR,
                                                                   e.getMessage ());
    }
}
 
开发者ID:vilie,项目名称:javify,代码行数:24,代码来源:DomXPathExpression.java


示例3: DomXPathExpression

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
DomXPathExpression(DomDocument doc, String expression,
                   XPathNSResolver resolver)
  throws XPathException
{
  this.doc = doc;
  this.resolver = resolver;
  
XPathFactory factory = XPathFactory.newInstance();
XPath xpath = factory.newXPath();
if (resolver != null)
  {
		xpath.setNamespaceContext(new DomNSResolverContext(resolver));
	  }
  try
    {
      this.expression = xpath.compile(expression);
    }
  catch (XPathExpressionException e)
    {
      throw new XPathException(XPathException.INVALID_EXPRESSION_ERR,
				                     e.getMessage ());
    }
}
 
开发者ID:nmldiegues,项目名称:jvm-stm,代码行数:24,代码来源:DomXPathExpression.java


示例4: evaluate

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
/**
 * <b>DOM</b>: Implements
 * {@link org.w3c.dom.xpath.XPathEvaluator#evaluate(String,Node,XPathNSResolver,short,Object)}.
 */
public Object evaluate(String expression,
                       Node contextNode,
                       XPathNSResolver resolver,
                       short type,
                       Object result)
        throws XPathException, DOMException {
    XPathExpression xpath = createExpression(expression, resolver);
    return xpath.evaluate(contextNode, type, result);
}
 
开发者ID:git-moss,项目名称:Push2Display,代码行数:14,代码来源:AbstractDocument.java


示例5: XPathExpr

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
/**
 * Creates a new XPathExpr object.
 */
public XPathExpr(String expr, XPathNSResolver res)
        throws DOMException, XPathException {
    resolver = res;
    prefixResolver = new NSPrefixResolver();
    try {
        xpath = new XPath(expr, null, prefixResolver, XPath.SELECT);
        context = new XPathContext();
    } catch (javax.xml.transform.TransformerException te) {
        throw createXPathException
            (XPathException.INVALID_EXPRESSION_ERR,
             "xpath.invalid.expression",
             new Object[] { expr, te.getMessage() });
    }
}
 
开发者ID:git-moss,项目名称:Push2Display,代码行数:18,代码来源:AbstractDocument.java


示例6: evaluate

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
public Object evaluate(String expression,
                       Node contextNode,
                       XPathNSResolver resolver,
                       short type,
                       Object result)
  throws XPathException, DOMException
{
  XPathExpression xpe =
    new DomXPathExpression(this, expression, resolver);
  return xpe.evaluate(contextNode, type, result);
}
 
开发者ID:vilie,项目名称:javify,代码行数:12,代码来源:DomDocument.java


示例7: createExpression

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
@Override
public final native XPathExpression createExpression(String expression, XPathNSResolver resolver) throws XPathException, DOMException /*-{
	try {
		return this.createExpression(expression, resolver);
	} catch (e) {
		@com.github.xose.xml.xpath.gwt.XPathExceptionUtil::raise(*)(e);
	}
}-*/;
 
开发者ID:xose,项目名称:gwt-xml,代码行数:9,代码来源:XPathEvaluatorImpl.java


示例8: evaluate

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
@Override
public final native Object evaluate(String expression, Node contextNode, XPathNSResolver resolver, short type, Object result) throws XPathException, DOMException /*-{
	try {
		return this.evaluate(expression, contextNode, resolver, type, result);
	} catch (e) {
		@com.github.xose.xml.xpath.gwt.XPathExceptionUtil::raise(*)(e);
	}
}-*/;
 
开发者ID:xose,项目名称:gwt-xml,代码行数:9,代码来源:XPathEvaluatorImpl.java


示例9: createExpression

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
/**
 * <b>DOM</b>: Implements
 * {@link org.w3c.dom.xpath.XPathEvaluator#createExpression(String,XPathNSResolver)}.
 */
public XPathExpression createExpression(String expression,
                                        XPathNSResolver resolver)
        throws DOMException, XPathException {
    return new XPathExpr(expression, resolver);
}
 
开发者ID:git-moss,项目名称:Push2Display,代码行数:10,代码来源:AbstractDocument.java


示例10: GnomeXPathExpression

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
GnomeXPathExpression (GnomeDocument doc, String expression,
                      XPathNSResolver resolver)
{
  expr = init (expression);
  // TODO resolver
}
 
开发者ID:vilie,项目名称:javify,代码行数:7,代码来源:GnomeXPathExpression.java


示例11: createExpression

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
public XPathExpression createExpression(String expression,
                                        XPathNSResolver resolver)
  throws XPathException, DOMException
{
  return new GnomeXPathExpression(this, expression, resolver);
}
 
开发者ID:vilie,项目名称:javify,代码行数:7,代码来源:GnomeDocument.java


示例12: createNSResolver

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
public XPathNSResolver createNSResolver(Node nodeResolver)
{
  return new GnomeXPathNSResolver(nodeResolver);
}
 
开发者ID:vilie,项目名称:javify,代码行数:5,代码来源:GnomeDocument.java


示例13: evaluate

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
public native Object evaluate(String expression,
                            Node contextNode,
                            XPathNSResolver resolver,
                            short type,
                            Object result)
throws XPathException, DOMException;
 
开发者ID:vilie,项目名称:javify,代码行数:7,代码来源:GnomeDocument.java


示例14: createExpression

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
public XPathExpression createExpression(String expression,
                                        XPathNSResolver resolver)
  throws XPathException, DOMException
{
  return new DomXPathExpression(this, expression, resolver);
}
 
开发者ID:vilie,项目名称:javify,代码行数:7,代码来源:DomDocument.java


示例15: createNSResolver

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
public XPathNSResolver createNSResolver(Node nodeResolver)
{
  return new DomXPathNSResolver(nodeResolver);
}
 
开发者ID:vilie,项目名称:javify,代码行数:5,代码来源:DomDocument.java


示例16: DomNSResolverContext

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
DomNSResolverContext(XPathNSResolver resolver)
{
        this.resolver = resolver;
}
 
开发者ID:vilie,项目名称:javify,代码行数:5,代码来源:DomNSResolverContext.java


示例17: DomNSResolverContext

import org.w3c.dom.xpath.XPathNSResolver; //导入依赖的package包/类
DomNSResolverContext(XPathNSResolver resolver)
{
	this.resolver = resolver;
}
 
开发者ID:nmldiegues,项目名称:jvm-stm,代码行数:5,代码来源:DomNSResolverContext.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java PDPageContentStream类代码示例发布时间:2022-05-21
下一篇:
Java CloseOperationState类代码示例发布时间:2022-05-21
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap