URIUtils.createURI被Deprecated的解决
在使用Apache 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
查看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:片段