我是靠谱客的博主 糊涂小伙,最近开发中收集的这篇文章主要介绍java http 心跳_java 发送 http 请求,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

public class VoteHandler implements IVoteHandler {

private static final Logger LOGGER = LoggerFactory.getLogger(RecorduvpvHandler.class);

@Override

public void invoke() {

final String postUrl = "http://localhost:8080/v1/vote/taskEnableControlVote";

BufferedReader bufferedReader = null;

try {

URL url = new URL(postUrl);

// 打开和url之间的链接

HttpURLConnection conn = (HttpURLConnection) url

.openConnection();

// 设置请求属性

conn.setRequestProperty("connection", "Keep-Alive");

conn.setDoOutput(true);

conn.setDoInput(true);

// Set the post method. Default is GET

conn.setRequestMethod("POST");

// Post cannot use caches

// Post 请求不能使用缓存

conn.setUseCaches(false);

// 定义BufferedReader输入流来读取url相应

bufferedReader = new BufferedReader(new InputStreamReader(conn.getInputStream()));

String line;

String result = "";

while ((line = bufferedReader.readLine()) != null) {

result += line;

}

LOGGER.info("请求响应结果:"+ JSON.toJSONString(result));

}catch (Exception e){

LOGGER.info("请求异常:"+e.getMessage());

}

finally {

try {

if (bufferedReader != null) {

bufferedReader.close();

}

}catch (Exception e){

LOGGER.info("流关闭异常:"+e.getMessage());

}

}

}

}

最后

以上就是糊涂小伙为你收集整理的java http 心跳_java 发送 http 请求的全部内容,希望文章能够帮你解决java http 心跳_java 发送 http 请求所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部