本文整理了Java中com.meterware.httpunit.WebRequest.newURL()
方法的一些代码示例,展示了WebRequest.newURL()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebRequest.newURL()
方法的具体详情如下:
包路径:com.meterware.httpunit.WebRequest
类名称: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() );
}
}
内容来源于网络,如有侵权,请联系作者删除!