org.apache.commons.httpclient.URI.isAbsPath()方法的使用及代码示例

x33g5p2x  于2022-01-31 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(84)

本文整理了Java中org.apache.commons.httpclient.URI.isAbsPath()方法的一些代码示例,展示了URI.isAbsPath()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。URI.isAbsPath()方法的具体详情如下:
包路径:org.apache.commons.httpclient.URI
类名称:URI
方法名:isAbsPath

URI.isAbsPath介绍

[英]Tell whether or not the relativeURI or hier_part of this URI is abs_path.
[中]告诉此URI的相对URI或hier_部分是否为abs_路径。

代码示例

代码示例来源:origin: commons-httpclient/commons-httpclient

/**
 * Normalizes the path part of this URI.  Normalization is only meant to be performed on 
 * URIs with an absolute path.  Calling this method on a relative path URI will have no
 * effect.
 *
 * @throws URIException no more higher path level to be normalized
 * 
 * @see #isAbsPath()
 */
public void normalize() throws URIException {
  if (isAbsPath()) {
    _path = normalize(_path);
    setURI();
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-httpclient

/**
 * Normalizes the path part of this URI.  Normalization is only meant to be performed on 
 * URIs with an absolute path.  Calling this method on a relative path URI will have no
 * effect.
 *
 * @throws URIException no more higher path level to be normalized
 * 
 * @see #isAbsPath()
 */
public void normalize() throws URIException {
  if (isAbsPath()) {
    _path = normalize(_path);
    setURI();
  }
}

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.httpclient

/**
 * Normalizes the path part of this URI.  Normalization is only meant to be performed on 
 * URIs with an absolute path.  Calling this method on a relative path URI will have no
 * effect.
 *
 * @throws URIException no more higher path level to be normalized
 * 
 * @see #isAbsPath()
 */
public void normalize() throws URIException {
  if (isAbsPath()) {
    _path = normalize(_path);
    setURI();
  }
}

代码示例来源:origin: org.apache.commons/httpclient

/**
 * Normalizes the path part of this URI.  Normalization is only meant to be performed on 
 * URIs with an absolute path.  Calling this method on a relative path URI will have no
 * effect.
 *
 * @throws URIException no more higher path level to be normalized
 * 
 * @see #isAbsPath()
 */
public void normalize() throws URIException {
  if (isAbsPath()) {
    _path = normalize(_path);
    setURI();
  }
}

代码示例来源:origin: org.zaproxy/zap

/**
 * Normalizes the path part of this URI.  Normalization is only meant to be performed on 
 * URIs with an absolute path.  Calling this method on a relative path URI will have no
 * effect.
 *
 * @throws URIException no more higher path level to be normalized
 * 
 * @see #isAbsPath()
 */
public void normalize() throws URIException {
  if (isAbsPath()) {
    _path = normalize(_path);
    setURI();
  }
}

代码示例来源:origin: org.wso2.commons-httpclient/commons-httpclient

/**
 * Normalizes the path part of this URI.  Normalization is only meant to be performed on 
 * URIs with an absolute path.  Calling this method on a relative path URI will have no
 * effect.
 *
 * @throws URIException no more higher path level to be normalized
 * 
 * @see #isAbsPath()
 */
public void normalize() throws URIException {
  if (isAbsPath()) {
    _path = normalize(_path);
    setURI();
  }
}

相关文章