文章出處

java通用URL接口地址調用方式GET和POST方式,包括建立請求和設置請求頭部信息等等。。。......


import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.net.HttpURLConnection;
import java.net.URL;
import org.json.JSONObject;
 
public class TestHuanXin {
public static void main(String[] args) {
    String url="http://www.itxm.net";
        try {
              String request="id=23";
              String response=getData(url,request);
              System.out.println(response);
 
              JSONObject root = new JSONObject(response);
 
              JSONObject jsonObject =root.getJSONObject("data");
 
             String token=jsonObject.getString("access_token");
 
              System.out.println("token="+token);
 
       } catch (Exception e) {
              e.printStackTrace();
       }
}

文章列表


不含病毒。www.avast.com
全站熱搜
創作者介紹
創作者 大師兄 的頭像
大師兄

IT工程師數位筆記本

大師兄 發表在 痞客邦 留言(0) 人氣()