组拼URL有2种情况:

1.直接是访问地址,没有带有参数

String path = "http://pic19.nipic.com/20120218/3096297_185027882000_2.jpg"
//String path = "https://www.baidu.com/"
URL url = new URL(path);

2.带有访问参数

通过使用 Android URI.builder框架类,我们可以创建一个结构良好的URI,而且不用关心其中细节,比如参数之间添加的&或者百分比等无效的符号。

Uri builtUri = Uri.parse(访问网络地址的字符串).buildUpon().
appendQueryParameter(参数1的KEY值, 参数1的值).
appendQueryParameter(参数2的KEY值, 参数2的值).build();
//将URI转换成URL
URL url = null;
try{
    url = new URL(builtUri.toString());
}catch(MalformedURLException e){
    e.printStackTrace();
}

results matching ""

    No results matching ""