単純なHTTPリクエスト

その他の呼び出し:

public static void main(String[] args) {
//    String params = "15" + "," + "ABC123456" + "," + "15604400096";
//    HttpUtil.doGet("http://localhost:8080/project/projectController/httputil.action", "params="+params);
    }

 

***********************************下部パッケージHttpUtilクラス********** *******************************
 

package com.jf.util;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLEncoder;
import java.util.List;
import java.util.Map;

public class HttpUtil {

    public static String doGet(String geturl, String params) {
        String realUrl = geturl + "?" + params;
        System.out.println(realUrl);

        try {
            // 1.通过在 URL 上调用 openConnection 方法创建连接对象
            URL url = new URL(realUrl);
            URLConnection conn = url.openConnection();

            // 2.处理设置参数和一般请求属性
            // 2.1设置参数
            // 可以根据请求的需要设置参数
            conn.setUseCaches(false);
            conn.setConnectTimeout(5000); // 请求超时时间

            // 2.2请求属性
            // 设置通用的请求属性 更多的头字段信息可以查阅HTTP协议
            conn.setRequestProperty("accept", "*/*");
            conn.setRequestProperty("connection", "Keep-Alive");

            conn.setRequestProperty("contentType", "UTF-8");
            // 3.使用 connect 方法建立到远程对象的实际连接。
            conn.connect();

            // 4.远程对象变为可用。远程对象的头字段和内容变为可访问。
            // 4.1获取响应的头字段
            Map<String, List<String>> headers = conn.getHeaderFields();
            System.out.println(headers); // 输出头字段

            // 4.2获取响应正文
            BufferedReader reader = null;
            StringBuffer resultBuffer = new StringBuffer();
            String tempLine = null;

            reader = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8"));
            while ((tempLine = reader.readLine()) != null) {
                resultBuffer.append(tempLine);
            }
            // System.out.println(resultBuffer);
            reader.close();
            return resultBuffer.toString();
        } catch (MalformedURLException e) {
            // TODO 自动生成的 catch 块
            e.printStackTrace();
        } catch (IOException e) {
            // TODO 自动生成的 catch 块
            e.printStackTrace();
        } finally {

        }
        return null;

    }

    public static String doPost(String url, String param) {
        PrintWriter out = null;
        BufferedReader in = null;
        String result = "";
        try {
            URL realUrl = new URL(url);
            // 打开和URL之间的连接
            URLConnection conn = realUrl.openConnection();
            // 设置通用的请求属性
            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("contentType", "UTF-8");
            // 发送POST请求必须设置如下两行
            conn.setDoOutput(true);
            conn.setDoInput(true);
            // 获取URLConnection对象对应的输出流
            out = new PrintWriter(conn.getOutputStream());
            // 发送请求参数
            out.print(param);
            System.out.println(param+"##################################");
            // flush输出流的缓冲
            out.flush();
            // 定义BufferedReader输入流来读取URL的响应
            in = new BufferedReader(new InputStreamReader(conn.getInputStream(),"UTF-8"));
            String line;
            while ((line = in.readLine()) != null) {
                result += "/n" + 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;
    }

    public static void main(String[] args) {
        String s = "测试";
        s = URLEncoder.encode(s);

        String str = "http://localhost:8080/tw_system/PushController_4S/sendMessage_Sign.action";
        String parm = "ticker=" + s
                + "&title=bbbbb&text=bbbbb&extrafield_key=bbbbb&extrafield_value=bbbb&app_type=2&alias=77f15c6704974bd1a8dd3dd9e71c10da";

        HttpUtil httpUtil = new HttpUtil();
        // String str ="http://www.sohu.com";
        httpUtil.doGet(str, parm);
    }

}

 

公開された66元の記事 ウォンの賞賛8 ビュー130 000 +

おすすめ

転載: blog.csdn.net/qq_37889636/article/details/89327758