POST请求HTTP接口

该代码段展示了一个使用Java实现的HTTP POST请求方法,包括设置请求URL、请求体、超时时间和处理响应的过程。它首先检查并初始化输入参数,然后创建HttpURLConnection对象,设置请求头和超时时间,最后发送请求并读取响应内容。
摘要由CSDN通过智能技术生成
/**
*url 请求地址
*jsonStr 请求报文
*timeout 请求该接口超时时间
*/
public static String reqHttpService(String url, String jsonStr ,String timeout) throws Exception{
    if(url ==null ){
        url ="";
    }
    if(jsonStr ==null ){
        jsonStr ="";
    }
    long reqTime = System.currentTimeMillis();
    // 接口地址
    String urlStr = url.trim(); 
    /** 注意:超时时间, 默认为:10000/毫秒*/
    if("".equals(timeout)){
        timeout = "10000";
    }
    int readTime ;//超时时间
    try{
        readTime = Integer.parseInt(timeout);
    }catch(Exception a){
        readTime =10000;
        System.out.println(wsname+",没有超时时间默认设置为:10000,即10秒!");
    }
    String responseMsg = "";
    BufferedReader in =null; // 读取响应输入流
    long a = System.currentTimeMillis();
    PrintWriter out1 = null;
    java.net.HttpURLConnection httpConn = null;
    try {
        java.net.URL connURL = new java.net.URL(urlStr);
        // 打开URL连接
        httpConn = (java.net.HttpURLConnection) connURL.openConnection();
        // 设置通用属性
        httpConn.setRequestProperty("Accept", "*/*");
        httpConn.setRequestProperty("Connection", "Keep-Alive");
        httpConn.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)");
        httpConn.setRequestProperty("content-type", "text/html");
        httpConn.setAllowUserInteraction(true);
                        
        int callTimeOut = readTime;
        // 设置POST方式
        httpConn.setRequestMethod("POST");
        httpConn.setDoInput(true);
        httpConn.setDoOutput(true);
        httpConn.setConnectTimeout(callTimeOut);
        httpConn.setReadTimeout(callTimeOut);
        httpConn.connect();//开始连接请求
                        
        // 获取HttpURLConnection对象对应的输出流
        out1 = new PrintWriter(httpConn.getOutputStream());
        // 发送请求参数
        out1.print(jsonStr);
        // flush输出流的缓冲
        out1.flush();
        // 定义BufferedReader输入流来读取URL的响应,设置编码方式
        in = new BufferedReader(new InputStreamReader(httpConn.getInputStream(), "UTF-8"));
        String line;
        // 读取返回的内容
        while ((line = in.readLine()) != null) {
            responseMsg += line;
        }
        System.out.println("responseMsg="+responseMsg);
    } catch (Exception e) {
        responseMsg="";
        System.out.println("HTTP方式发送车险报案数据,接口调用异常,错误信息=" + e.toString());
            e.printStackTrace();
    } finally {
        try {
            if (out1 != null) {
                out1.close();
            }
            if (in != null) {
                in.close();
            }
            if (httpConn != null) {
                httpConn.disconnect();
            }
        } catch (IOException ex) {
                ex.printStackTrace();
        }
    }
    long end = System.currentTimeMillis();
    System.out.println(DateService.getDateTime()+"接口总用时" + (end -reqTime) / 1000.0 + "秒。");
    return responseMsg;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Java中可以使用HttpURLConnection或者Apache HttpClient来发送HTTP请求。其中,HttpURLConnection是Java标准库中提供的类,它可以通过向服务器发送不同的HTTP请求方法(如GET、POST等)来实现与服务器的交互。Apache HttpClient是一个第三方库,相对于HttpURLConnection来说,它提供了更多的功能和更简洁的API接口。 下面以HttpURLConnection为例介绍如何发送POST请求: ```java import java.io.BufferedReader; import java.io.DataOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import java.nio.charset.StandardCharsets; public class HttpPostExample { public static void main(String[] args) throws IOException { String url = "http://example.com/api/v1/user"; // 请求的url地址 String body = "{\"username\":\"test\",\"password\":\"123456\"}"; // 请求体 URL obj = new URL(url); HttpURLConnection con = (HttpURLConnection) obj.openConnection(); con.setRequestMethod("POST"); // 设置请求方法为POST con.setRequestProperty("Content-Type", "application/json; charset=UTF-8"); // 设置请求头 con.setDoOutput(true); // 允许输出流 // 发送请求体 try (DataOutputStream wr = new DataOutputStream(con.getOutputStream())) { byte[] bodyBytes = body.getBytes(StandardCharsets.UTF_8); wr.write(bodyBytes); wr.flush(); } // 处理响应结果 int responseCode = con.getResponseCode(); System.out.println("Response Code : " + responseCode); try (BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()))) { String inputLine; StringBuilder response = new StringBuilder(); while ((inputLine = in.readLine()) != null) { response.append(inputLine); } System.out.println("Response Body : " + response.toString()); } } } ``` 以上代码演示了如何使用HttpURLConnection发送POST请求,其中`url`表示请求的url地址,`body`表示请求体,需要根据实际情况进行修改。在发送请求时,需要设置请求方法为POST,并设置请求头`Content-Type`为`application/json; charset=UTF-8`。在发送请求体后,可以通过`getResponseCode`方法获取响应状态码,通过`getInputStream`方法获取响应内容。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值