版权声明:本文为博主chszs的原创文章,未经博主允许不得转载。 https://blog.csdn.net/chszs/article/details/45893191
URIUtils.createURI被Deprecated的解决
作者:chszs,转载需注明。博客主页:
http://blog.csdn.net/chszs在使用httpclient 4.4.1版开发代码时,无意中发现org.apache.http.client.utils.URIUtils.createURI()方法被废弃了。此方法的完整描述如下:
public static URI createURI(String scheme,
String host,
int port,
String path,
String query,
String fragment)
throws URISyntaxException
仔细看了URIUtils的所有方法,但没有任何新方法可以代替此方法,那么该怎么办呢?
查看API文档,据官方说,此方法是从HttpClient 4.2版以后开始标记为Deprecated的。官方推荐使用URI类来取代它。
详述如下:
java.net.URI类的构造方法:
URI(String scheme, String userInfo, String host, int port, String path, String query, String fragment)
参数说明
scheme:协议名
userInfo:用户名及授权信息
host:主机名
port:端口号
path:路径
query:查询
fragment:片段