本文整理了Java中com.meterware.httpunit.WebRequest.getURLDirectory()
方法的一些代码示例,展示了WebRequest.getURLDirectory()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebRequest.getURLDirectory()
方法的具体详情如下:
包路径:com.meterware.httpunit.WebRequest
类名称:WebRequest
方法名:getURLDirectory
暂无
代码示例来源:origin: httpunit/httpunit
private URL newCombinedURL( final URL base, final String spec ) throws MalformedURLException {
if (base == null) return new URL( getNormalizedURL( spec ) );
else if (spec.startsWith( ".." )) return new URL( getNormalizedURL( getURLDirectory( base ) + spec ) );
else return new URL( base, getNormalizedURL( spec ) );
}
代码示例来源:origin: org.kohsuke.httpunit/httpunit
private URL newCombinedURL( final URL base, final String spec ) throws MalformedURLException {
if (base == null) return new URL( getNormalizedURL( spec ) );
else if (spec.startsWith( ".." )) return new URL( getNormalizedURL( getURLDirectory( base ) + spec ) );
else return new URL( base, getNormalizedURL( spec ) );
}
代码示例来源:origin: javanettasks/httpunit
private URL newCombinedURL( final URL base, final String spec ) throws MalformedURLException {
if (base == null) return new URL( getNormalizedURL( spec ) );
else if (spec.startsWith( ".." )) return new URL( getNormalizedURL( getURLDirectory( base ) + spec ) );
else return new URL( base, getNormalizedURL( spec ) );
}
内容来源于网络,如有侵权,请联系作者删除!