jdk的get和post请求的示例分析

发布时间:2021-09-18 11:56:53 作者:柒染
来源:亿速云 阅读:117

这篇文章给大家介绍jdk的get和post请求的示例分析,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

post 

        OutputStreamWriter out = null;
        HttpURLConnection conn = null;
        BufferedReader reader = null;
        StringBuilder response = new StringBuilder();
        URL httpUrl = null;
        try{
            httpUrl = new URL("http://www.baidu.com");
            //建立连接
            conn = (HttpURLConnection) httpUrl.openConnection();
            conn.setRequestMethod("POST");
            conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
            conn.setUseCaches(false);//设置不要缓存
            conn.setInstanceFollowRedirects(true);
            conn.setDoOutput(true);
            conn.setDoInput(true);
            conn.connect();
            out = new OutputStreamWriter(conn.getOutputStream());
            out.write(params);
            out.flush();
            //读取响应
            reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String lines;
            while ((lines = reader.readLine()) != null) {
                lines = new String(lines.getBytes(), "utf-8");
                response.append(lines);
            }
            System.out.println(response.toString());
        }catch(Exception e){
            e.printStackTrace();
        }

get

/**
     * 发送GET请求
     *
     * @param url        目的地址
     * @param parameters 请求参数,Map类型。
     * @return 远程响应结果
     */
    public static String sendGet(String url, Map<String, String> parameters) {
        StringBuilder result = new StringBuilder();
        BufferedReader in = null;// 读取响应输入流
        StringBuilder sbParams = new StringBuilder();// 存储参数
        String params = "";// 编码之后的参数
        try {
            // 编码请求参数
            for (String name : parameters.keySet()) {
                sbParams.append(name).append("=").append(java.net.URLEncoder.encode(parameters.get(name), "UTF-8")).append("&");
            }
            String requestParam = sbParams.toString();
            params = requestParam.substring(0, requestParam.length() - 1);
            String fullUrl = url + "?" + params;
            logger.info("get请求:" + fullUrl);
            // 创建URL对象
            URL connURL = new URL(fullUrl);
            // 打开URL连接
            HttpURLConnection httpConn = (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.connect();
            // Map<String, List<String>> headers = httpConn.getHeaderFields();
            // 定义BufferedReader输入流来读取URL的响应,并设置编码方式
            in = new BufferedReader(new InputStreamReader(httpConn.getInputStream(), StandardCharsets.UTF_8));
            String line;
            // 读取返回的内容
            while ((line = in.readLine()) != null) {
                result.append(line);
            }
            logger.info("get请求结果:" + result.toString());
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (in != null) {
                    in.close();
                }
            } catch (IOException ex) {
                ex.printStackTrace();
            }
        }
        return result.toString();
    }

关于jdk的get和post请求的示例分析就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

推荐阅读:
  1. python之简单的get和post请求
  2. Ajax请求的原理 get及post方法 和get,post请求方式的区别

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

jdk get post

上一篇:怎么在Shell命令行处理JSON数据

下一篇:杀掉oracle在线用户的脚本分享

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》