90.android 简单的HttpURLConnection使用from-data请求(POST请求)+解决WIFI无法使用,重定向
//很简单,直接上代码:
public String post(String httpsUrl, String params) {
String result = null;
try {
URL url = new URL(httpsUrl); // 解析httpsUrl,生成url对象
HttpURLConnection conn =...
原创
2018-11-07 23:42:11 ·
2396 阅读 ·
2 评论