java发起http请求使用代理服务器

package org.jeecg.modules.Test;


import com.alibaba.fastjson.JSONObject;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.*;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.InetSocketAddress;
import java.net.MalformedURLException;
import java.net.Proxy;
import java.net.Proxy.Type;
import java.net.URL;

public class HttpGetUtils {




    /**
     * http请求工具类
     * @author ouyangjun


        /**
         * http get请求, 不带参数
         * @param requestURL
         * @param
         * @return
         */
        public static String doGetNoParameters(String requestURL, String proxyHost, Integer proxyPort) {
            // 记录信息
            StringBuffer buffer = new StringBuffer();

            HttpURLConnection conn = null;
            try {
                URL url = new URL(requestURL);
                // 判断是否需要代理模式请求http
                if (proxyHost != null && proxyPort != null) {
                    // 如果是本机自己测试, 不需要代理请求,但发到服务器上的时候需要代理请求
                    // 对http开启全局代理
                    System.setProperty("http.proxyHost", proxyHost);
                    System.setProperty("http.proxyPort", proxyPort.toString());
                    // 对https开启全局代理
                    //System.setProperty("https.proxyHost", proxyHost);
                    //System.setProperty("https.proxyPort", proxyPort);

                    // 代理访问http请求
                    Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(proxyHost, proxyPort));
                    conn = (HttpURLConnection) url.openConnection(proxy);
                } else {
                    // 原生访问http请求,未代理请求
                    conn = (HttpURLConnection) url.openConnection();
                }

                // 设置请求的属性
                conn.setDoOutput(true); // 是否可以输出
                conn.setRequestMethod("GET"); // 请求方式, 只包含"GET", "POST", "HEAD", "OPTIONS", "PUT", "DELETE", "TRACE"六种
                conn.setConnectTimeout(60000); // 最高超时时间
                conn.setReadTimeout(60000); // 最高读取时间
                conn.setConnectTimeout(60000); // 最高连接时间

                // 读取数据
                InputStream is = null;
                InputStreamReader inputReader = null;
                BufferedReader reader = null;
                try {
                    is = conn.getInputStream();
                    inputReader = new InputStreamReader(is, "UTF-8");
                    reader = new BufferedReader(inputReader);

                    String temp;
                    while ((temp = reader.readLine()) != null) {
                        buffer.append(temp);
                    }
                } catch (Exception e) {
                    System.out.println("HttpGetUtils doGetNoParameters error: " + e);
                } finally {
                    try {
                        if (reader != null) {
                            reader.close();
                        }
                        if (inputReader != null) {
                            inputReader.close();
                        }
                        if (is != null) {
                            is.close();
                        }
                    } catch (IOException e) {
                        System.out.println("HttpGetUtils doGetNoParameters error: " + e);
                    }
                }
            } catch (MalformedURLException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            } finally {
                // 当http连接空闲时, 释放资源
                if (conn != null) {
                    conn.disconnect();
                }
            }
            System.out.println(buffer.toString());
            // 返回信息
            return buffer.length()==0 ? "" : buffer.toString();
        }












        /**
         * http post请求, 带参数
         * @param requestURL
         * @param params
         * @return
         */
        public static String doPost(String requestURL, String params, String proxyHost, Integer proxyPort) {
            // 记录信息
            StringBuffer buffer = new StringBuffer();
//            HttpURLConnection urlConnection = null;

            HttpURLConnection conn = null;
            try {
                URL url = new URL(requestURL);

//                urlConnection = (HttpURLConnection) url.openConnection();
//                urlConnection.setRequestProperty("X-Mobile-Version", "");
//                urlConnection.setRequestProperty("X-Menu-Hash", "menuTop");
//                urlConnection.setRequestProperty("X-MenuBottom-Hash", "menuBottom");



                // 判断是否需要代理模式请求http
                if (proxyHost != null && proxyPort != null) {
                    // 如果是本机自己测试, 不需要代理请求,但发到服务器上的时候需要代理请求
//                     对http开启全局代理
                    System.setProperty("http.proxyHost", proxyHost);
                    System.setProperty("http.proxyPort", proxyPort.toString());
                    // 对https开启全局代理
                    //System.setProperty("https.proxyHost", proxyHost);
                    //System.setProperty("https.proxyPort", proxyPort);

                    // 代理访问http请求
                    Proxy proxy = new Proxy(Type.HTTP, new InetSocketAddress(proxyHost, proxyPort));
                    conn = (HttpURLConnection) url.openConnection(proxy);
                } else {
                    // 原生访问http请求,未代理请求
                    conn = (HttpURLConnection) url.openConnection();
                }

                // 设置请求的属性
                conn.setDoOutput(true); // 是否可以输出
                conn.setRequestMethod("POST"); // 请求方式, 只包含"GET", "POST", "HEAD", "OPTIONS", "PUT", "DELETE", "TRACE"六种
                conn.setConnectTimeout(60000); // 最高超时时间
                conn.setReadTimeout(60000); // 最高读取时间
                conn.setConnectTimeout(60000); // 最高连接时间
                conn.setDoInput(true); // 是否可以输入

                //添加请求头信息 
                conn.setRequestProperty("","");



                if (params != null) {
                    // 设置参数为json格式
                    conn.setRequestProperty("Content-type", "application/json");

                    // 写入参数信息
                    OutputStream os = conn.getOutputStream();
                    try {
                        os.write(params.getBytes("UTF-8"));
                    } catch (Exception e) {
                        System.out.println("HttpPostUtils doPost error: " + e);
                    } finally {
                        try {
                            if (os != null) {
                                os.close();
                            }
                        } catch (IOException e) {
                            System.out.println("HttpPostUtils doPost error: " + e);
                        }
                    }
                }

                // 读取数据
                InputStream is = null;
                InputStreamReader inputReader = null;
                BufferedReader reader = null;
                try {
                    is = conn.getInputStream();
                    inputReader = new InputStreamReader(is, "UTF-8");
                    reader = new BufferedReader(inputReader);

                    String temp;
                    while ((temp = reader.readLine()) != null) {
                        buffer.append(temp);
                    }
                } catch (Exception e) {
                    System.out.println("HttpPostUtils doPost error: " + e);
                } finally {
                    try {
                        if (reader != null) {
                            reader.close();
                        }
                        if (inputReader != null) {
                            inputReader.close();
                        }
                        if (is != null) {
                            is.close();
                        }
                    } catch (IOException e) {
                        System.out.println("HttpPostUtils doPost error: " + e);
                    }
                }
            } catch (MalformedURLException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            } finally {
                // 当http连接空闲时, 释放资源
                if (conn != null) {
                    conn.disconnect();
                }
            }
            // 返回信息
            return buffer.length()==0 ? "" : buffer.toString();
        }



















    public static void main(String[] args) {

//        doGetNoParameters("https://www.baidu.com/","192.168.1.110",8088);
//        doGetNoParameters("http://www.zqline.cn/wxapi/rest/xjprapi/get_act?iid=2","192.168.1.190",8088);
//        doGetNoParameters("http://192.168.1.190:8091/imsapi/testJk","192.168.1.106",8088);
//        doGetNoParameters("http://www.baidu.com",null,null);
        //doGetNoParameters("http://192.168.1.190:8091/imsapi/testJk","192.168.1.190",8088);

        JSONObject jsonObject=new JSONObject();
        jsonObject.put("lpid","测试");

        doPost("http://192.168.1.190:8091/imsapi/testJk",jsonObject.toString(),"192.168.1.106",8088);

    }




}
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值