java后台调用别人开发接口并接收返回数据

/*
*第一种方式post请求
*/
JSONObject result = new JSONObject();
JSONObject jsonss = new JSONObject();
jsons.put("key","value");
try {
            URL url = new URL("这里写你需要调用接口的地址");
            //打开和url之间的连接
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();
            PrintWriter out = null;
            //请求方式 这里设置你需要请求的方式
//           conn.setRequestMethod("POST");
//           //设置通用的请求属性
            conn.setRequestProperty("accept", "*/*");
            conn.setRequestProperty("connection", "Keep-Alive");
//  这里设置请求头
            conn.setRequestProperty("Content-Type", "application/json;charset=utf-8");
            //设置是否向httpUrlConnection输出,设置是否从httpUrlConnection读入,此外发送post请求必须设置这两个
            //最常用的Http请求无非是get和post,get请求可以获取静态页面,也可以把参数放在URL字串后面,传递给servlet,
            //post与get的 不同之处在于post的参数不是放在URL字串里面,而是放在http请求的正文内。
            conn.setDoOutput(true);
            conn.setDoInput(true);
            //获取URLConnection对象对应的输出流
            out = new PrintWriter(conn.getOutputStream());
            //发送请求参数即数据
            out.print(result);
            //缓冲数据
            out.flush();
            //获取URLConnection对象对应的输入流
            InputStream is = conn.getInputStream();
            //构造一个字符流缓存
            BufferedReader br = new BufferedReader(new InputStreamReader(is));
            String str = "";
            com.alibaba.fastjson.JSONObject jsonss = null;
            while ((str = br.readLine()) != null) {
                jsonss =com.alibaba.fastjson.JSONObject.parseObject(str);
            }
            System.out.println("获取到的报文数据为:"+jsonss);
            //关闭流
            is.close();
            //断开连接,最好写上,disconnect是在底层tcp socket链接空闲时才切断。如果正在被 
            其他线程使用就不切断。
            //固定多线程的话,如果不disconnect,链接会增多,直到收发不出信息。写上 
            disconnect后正常一些。
            conn.disconnect();
            System.out.println("结束");
        } catch (Exception e) {
            e.printStackTrace();
        }


/*
*第二种方式,get请求
*/
JSONObject json = new JSONObject();
        json.put("orderId","2019061015241733858019");
        String urls = "http://www.baidu.com?vehicleCode=236521904334965";
        URL url = new URL(urls);
        //打开和url之间的连接
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        PrintWriter out = null;
        //请求方式
        conn.setRequestMethod("GET");
           //设置通用的请求属性
        conn.setRequestProperty("accept", "*/*");
        conn.setRequestProperty("connection", "Keep-Alive");
        conn.setRequestProperty("Content-Type", "application/json;charset=utf-8");
        //设置是否向httpUrlConnection输出,设置是否从httpUrlConnection读入,此外发送post请求必须设置这两个
        //最常用的Http请求无非是get和post,get请求可以获取静态页面,也可以把参数放在URL字串后面,传递给servlet,
        //post与get的 不同之处在于post的参数不是放在URL字串里面,而是放在http请求的正文内。get请求不需要设置
//        conn.setDoOutput(true);
//        conn.setDoInput(true);
        //获取URLConnection对象对应的输出流
        conn.connect();
        //获取URLConnection对象对应的输入流
        InputStream is = conn.getInputStream();
        //构造一个字符流缓存
        BufferedReader br = new BufferedReader(new InputStreamReader(is));
        String str = "";
        com.alibaba.fastjson.JSONObject jsonss = null;
        while ((str = br.readLine()) != null) {
            jsonss =com.alibaba.fastjson.JSONObject.parseObject(str);
        }
        System.out.println("获取到的报文数据为:"+jsonss);
        //关闭流
        is.close();
        //断开连接,最好写上,disconnect是在底层tcp socket链接空闲时才切断。如果正在被其他线程使用就不切断。
        //固定多线程的话,如果不disconnect,链接会增多,直到收发不出信息。写上disconnect后正常一些。
        conn.disconnect();
        System.out.println("结束");


/**
*PostMethod方法
*/
public static void test(String json) throws Exception{
		HttpClient client = new HttpClient();
//		PostMethod post = new PostMethod("地址");
		PostMethod post = new PostMethod("地址");
		post.addRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8");// 在头文件中设置转码
		NameValuePair[] data = { new NameValuePair("json", json) };//参数
		post.setRequestBody(data);
		client.executeMethod(post);
		Header[] headers = post.getResponseHeaders();
		int statusCode = post.getStatusCode();
		String result = null;
		try {
			result = new String(post.getResponseBodyAsString().getBytes("utf-8"));
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		post.releaseConnection();
		System.out.println(result);
	}

 

你可能感兴趣的:(java后台调用别人开发接口并接收返回数据)