Java中的POST与GET请求

    2016年05月15日     编程语言     JAVA        字数:2369

在服务请求中,通过HTTP的方式发送POST或者GET是最常见的请求方式。下面介绍JAVA中常用的POST、GET请求方式。

POST

实现代码

public static void sendMessage(String url, String message) {
    try {
        HttpURLConnection conn = (HttpURLConnection) new URL(url).openConnection();
        conn.setDoOutput(true); //表示只写数据
        conn.setRequestProperty("Content-Type", "application/json"); //设置请求头
        conn.setRequestProperty("Accept", "application/json"); //设置请求头
        conn.setRequestMethod("POST"); //POST请求方式
        OutputStream stream = conn.getOutputStream();
        stream.write(message.getBytes()); //请求数据
        stream.flush();
        stream.close();
        int responseCode = conn.getResponseCode();
        if (responseCode == HttpURLConnection.HTTP_OK) {
            System.out.println("SUCCESS");
        } else {
            System.out.println("SUCCESS");
        }
    } catch (IOException e) {
        e.printStackTrace();
        System.out.println("EXCEPTION");
    }
}

上面的方法是先了一下的curl语句:

curl -H "Content-Type:application/json" -H "Accept:application/json" -d "messge" "url"

GET

实现conn.setRequestMethod("GET");即可。

文章标题:Java中的POST与GET请求

文章字数:2369

发布时间:2016年05月15日

原始链接: https://lanffy.github.io/2016/05/15/Java%E4%B8%AD%E7%9A%84POST%E4%B8%8EGET%E8%AF%B7%E6%B1%82

版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。