zoukankan      html  css  js  c++  java
  • Java封装servlet发送请求(一)

    /**
    
         * 发送https请求
    
         * 
    
         * @param requestUrl 请求地址
    
         * @param requestMethod 请求方式(GET、POST)
    
         * @param outputStr 提交的数据
    
         * @return JSONObject(通过JSONObject.get(key)的方式获取json对象的属性值)
    
         */
    
        public static JSONObject httpsRequest(String requestUrl, String requestMethod, String outputStr) {
    
            JSONObject jsonObject = null;
    
            try {
    
                // 创建SSLContext对象,并使用我们指定的信任管理器初始化
    
                TrustManager[] tm = { new MyX509TrustManager() };
    
                SSLContext sslContext = SSLContext.getInstance("SSL", "SunJSSE");
    
                sslContext.init(null, tm, new java.security.SecureRandom());
    
                // 从上述SSLContext对象中得到SSLSocketFactory对象
    
                SSLSocketFactory ssf = sslContext.getSocketFactory();
    
    
    
                URL url = new URL(requestUrl);
    
                HttpsURLConnection conn = (HttpsURLConnection) url.openConnection();
    
                conn.setSSLSocketFactory(ssf);
    
                
    
                conn.setDoOutput(true);
    
                conn.setDoInput(true);
    
                conn.setUseCaches(false);
    
                // 设置请求方式(GET/POST)
    
                conn.setRequestMethod(requestMethod);
    
    
    
                // 当outputStr不为null时向输出流写数据
    
                if (null != outputStr) {
    
                    OutputStream outputStream = conn.getOutputStream();
    
                    // 注意编码格式
    
                    outputStream.write(outputStr.getBytes("UTF-8"));
    
                    outputStream.close();
    
                }
    
    
    
                // 从输入流读取返回内容
    
                InputStream inputStream = conn.getInputStream();
    
                InputStreamReader inputStreamReader = new InputStreamReader(inputStream, "utf-8");
    
                BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
    
                String str = null;
    
                StringBuffer buffer = new StringBuffer();
    
                while ((str = bufferedReader.readLine()) != null) {
    
                    buffer.append(str);
    
                }
    
    
    
                // 释放资源
    
                bufferedReader.close();
    
                inputStreamReader.close();
    
                inputStream.close();
    
                inputStream = null;
    
                conn.disconnect();
    
                jsonObject = JSONObject.fromObject(buffer.toString());
    
            } catch (ConnectException ce) {
    
                log.error("连接超时:{}", ce);
    
            } catch (Exception e) {
    
                log.error("https请求异常:{}", e);
    
            }
    
            return jsonObject;
    
        }
  • 相关阅读:
    135.002 智能合约设计-——多员工薪酬系统
    131.007 Unsupervised Learning
    131.006 Unsupervised Learning
    131.005 Unsupervised Learning
    135.001 智能合约设计-——单员工薪酬系统
    131.004 监督学习项目 | 为CharityML寻找捐献者
    131.003 数据预处理之Dummy Variable & One-Hot Encoding
    Chromebook 阿里云ECS 配置 jupyter Notebook
    Python之实现迭代器协议
    使用生成器创建新的迭代模式
  • 原文地址:https://www.cnblogs.com/zh-1721342390/p/9764898.html
Copyright © 2011-2022 走看看