com.meterware.httpunit.WebRequest.newURL()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(2.0k)|赞(0)|评价(0)|浏览(104)

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

WebRequest.newURL介绍

[英]Creates a new URL, handling the case where the relative URL begins with a '?'
[中]创建一个新的URL,处理相对URL以“?”开头的情况

代码示例

代码示例来源:origin: javanettasks/httpunit

/**
 * Returns the final URL associated with this web request.
 * @return the Uniform Resource Locator for this Web request
 * @throws MalformedURLException if the URL is not o.k. 
 **/
public URL getURL() throws MalformedURLException {
  if (getURLBase() == null || getURLBase().toString().indexOf( "?" ) < 0) {
    return newURL( getURLBase(), getURLString() );
  } else {
    final String urlBaseString = getURLBase().toString();
    URL newurlbase = new URL( urlBaseString.substring( 0, urlBaseString.indexOf( "?" ) ) );
    return newURL( newurlbase, getURLString() );
  }
}

代码示例来源:origin: httpunit/httpunit

/**
 * Returns the final URL associated with this web request.
 * @return the Uniform Resource Locator for this Web request
 * @throws MalformedURLException if the URL is not o.k. 
 **/
public URL getURL() throws MalformedURLException {
  if (getURLBase() == null || getURLBase().toString().indexOf( "?" ) < 0) {
    return newURL( getURLBase(), getURLString() );
  } else {
    final String urlBaseString = getURLBase().toString();
    URL newurlbase = new URL( urlBaseString.substring( 0, urlBaseString.indexOf( "?" ) ) );
    return newURL( newurlbase, getURLString() );
  }
}

代码示例来源:origin: org.kohsuke.httpunit/httpunit

/**
 * Returns the final URL associated with this web request.
 * @return the Uniform Resource Locator for this Web request
 * @throws MalformedURLException if the URL is not o.k. 
 **/
public URL getURL() throws MalformedURLException {
  if (getURLBase() == null || getURLBase().toString().indexOf( "?" ) < 0) {
    return newURL( getURLBase(), getURLString() );
  } else {
    final String urlBaseString = getURLBase().toString();
    URL newurlbase = new URL( urlBaseString.substring( 0, urlBaseString.indexOf( "?" ) ) );
    return newURL( newurlbase, getURLString() );
  }
}

相关文章