HttpClient与HttpURLConnection的区别
HttpURLConnection
除了支持HTTP协议外,还支持ftp,file,mailto等协议
import java.net.URLDecoder;
import java.net.URLEncoder;
String encoder = URLEncoder.encode(str, "utf-8");
System.out.println("编码后:" + encoder);// %E8%B5%B5%E4%B8%9A
String decoder = URLDecoder.decode(encoder, "utf-8");
System.out.println("解码后:" + decoder);