Java如何調用外部介面?以一個簡單的POST介面調用為例

來源:互聯網
上載者:User

進行java的C/S軟體開發時,對接了一些第三方提供的網頁介面。

使用介面的方式沒有想象的那麼難。
比方說提供的介面是一個GET形式時,在網頁上直接輸出地址,將參數拼湊輸入即可得到傳回值。
如果是一個POST介面,就需要使用如POSTMAN或瀏覽器內建外掛程式等等方式來進行一個介面的請求。
轉化成代碼也是如此。
下面是一個簡單的POST介面調用執行個體:
P:param參數可使用JSONObject.fromObject(對象)來傳入

     /**     * @author : cjd     * @description : post介面 返回結果字串     * @params : [url, param]     * @param url 請求介面     * @param param 需要的json字串     * @return :java.lang.String     * @date : 17:31 2018/8/1     */    public static String sendPost(String url, String param) {        OutputStreamWriter out = null;        BufferedReader in = null;        String result = "";        try {            URL realUrl = new URL(url);            HttpURLConnection conn = null;            // 開啟和URL之間的串連            conn = (HttpURLConnection) realUrl.openConnection();            // 發送POST請求必須設定如下兩行            conn.setDoOutput(true);            conn.setDoInput(true);            conn.setRequestMethod("POST");    // POST方法            // 設定通用的請求屬性            conn.setRequestProperty("accept", "*/*");            conn.setRequestProperty("connection", "Keep-Alive");            conn.setRequestProperty("user-agent",                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");            conn.setRequestProperty("Content-Type", "application/json;charset=utf-8");            conn.connect();            // 擷取URLConnection對象對應的輸出資料流            out = new OutputStreamWriter(conn.getOutputStream(), "UTF-8");            // 發送請求參數            out.write(param);            // flush輸出資料流的緩衝            out.flush();            // 定義BufferedReader輸入資料流來讀取URL的響應            in = new BufferedReader(new InputStreamReader(conn.getInputStream()));            String line;            while ((line = in.readLine()) != null) {                result += line;            }        } catch (Exception e) {            System.out.println("發送 POST 請求出現異常!" + e);            e.printStackTrace();        }        //使用finally塊來關閉輸出資料流、輸入資料流        finally {            try {                if (out != null) {                    out.close();                }                if (in != null) {                    in.close();                }            } catch (IOException ex) {                ex.printStackTrace();            }        }        return result;    }

調用該方法後得到的是對應返回的json資料的字串格式。
java是一個物件導向的語言,所以使用JSONObject/JsonArray 將json資料轉化為實體類的對象,舉個我使用的例子,因為那邊返回的介面形式有點奇怪,所以我進行了多步處理如下:

            PrePickupMailRes resultBean = new PrePickupMailRes();            JSONObject respJson = JSONObject.fromObject(JSONObject.fromObject(json).get("respJson"));            JSONArray jsonArray = (JSONArray) respJson.get("prePickupRspDetailDTOList");            JSONObject resultJson = (JSONObject) jsonArray.get(0);            JSONUtils.getMorpherRegistry().registerMorpher(new DateMorpher(new String[]{"MM/dd/yyyy HH:mm:ss"}));            resultBean = (PrePickupMailRes) JSONObject.toBean(resultJson, PrePickupMailRes.class);

這樣我們最後得到的就是一個實體物件。

關於JSONObject/JSONArray的使用方法見:
https://blog.csdn.net/chijiandi/article/details/81011369

進行java的C/S軟體開發時,對接了一些第三方提供的網頁介面。
使用介面的方式沒有想象的那麼難。
比方說提供的介面是一個GET形式時,在網頁上直接輸出地址,將參數拼湊輸入即可得到傳回值。
如果是一個POST介面,就需要使用如POSTMAN或瀏覽器內建外掛程式等等方式來進行一個介面的請求。
轉化成代碼也是如此。
下面是一個簡單的POST介面調用執行個體:
P:param參數可使用JSONObject.fromObject(對象)來傳入

     /**     * @author : cjd     * @description : post介面 返回結果字串     * @params : [url, param]     * @param url 請求介面     * @param param 需要的json字串     * @return :java.lang.String     * @date : 17:31 2018/8/1     */    public static String sendPost(String url, String param) {        OutputStreamWriter out = null;        BufferedReader in = null;        String result = "";        try {            URL realUrl = new URL(url);            HttpURLConnection conn = null;            // 開啟和URL之間的串連            conn = (HttpURLConnection) realUrl.openConnection();            // 發送POST請求必須設定如下兩行            conn.setDoOutput(true);            conn.setDoInput(true);            conn.setRequestMethod("POST");    // POST方法            // 設定通用的請求屬性            conn.setRequestProperty("accept", "*/*");            conn.setRequestProperty("connection", "Keep-Alive");            conn.setRequestProperty("user-agent",                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");            conn.setRequestProperty("Content-Type", "application/json;charset=utf-8");            conn.connect();            // 擷取URLConnection對象對應的輸出資料流            out = new OutputStreamWriter(conn.getOutputStream(), "UTF-8");            // 發送請求參數            out.write(param);            // flush輸出資料流的緩衝            out.flush();            // 定義BufferedReader輸入資料流來讀取URL的響應            in = new BufferedReader(new InputStreamReader(conn.getInputStream()));            String line;            while ((line = in.readLine()) != null) {                result += line;            }        } catch (Exception e) {            System.out.println("發送 POST 請求出現異常!" + e);            e.printStackTrace();        }        //使用finally塊來關閉輸出資料流、輸入資料流        finally {            try {                if (out != null) {                    out.close();                }                if (in != null) {                    in.close();                }            } catch (IOException ex) {                ex.printStackTrace();            }        }        return result;    }

調用該方法後得到的是對應返回的json資料的字串格式。
java是一個物件導向的語言,所以使用JSONObject/JsonArray 將json資料轉化為實體類的對象,舉個我使用的例子,因為那邊返回的介面形式有點奇怪,所以我進行了多步處理如下:

            PrePickupMailRes resultBean = new PrePickupMailRes();            JSONObject respJson = JSONObject.fromObject(JSONObject.fromObject(json).get("respJson"));            JSONArray jsonArray = (JSONArray) respJson.get("prePickupRspDetailDTOList");            JSONObject resultJson = (JSONObject) jsonArray.get(0);            JSONUtils.getMorpherRegistry().registerMorpher(new DateMorpher(new String[]{"MM/dd/yyyy HH:mm:ss"}));            resultBean = (PrePickupMailRes) JSONObject.toBean(resultJson, PrePickupMailRes.class);

這樣我們最後得到的就是一個實體物件。

相關文章:

詳解C#介面在衍生類別和外部類中的調用方法樣本

想做一上PHP調用java webservice介面的例子

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.