在网上找到一个 JAVA实现Python requests模块(JAVA实现Http请求)
try {
logger1.info("===============>>>>>" + Path + "------------>>" + headers);
data= Requests.post(Path)
.headers(headers )
.requestCharset(cs)
.send()
.readToText();
}catch (Exception e){
e.printStackTrace();
data = "error";
}
其中Charset cs = Charset.forName("utf-8");
这段代码在window上也就是本地运行是没有问题的,但是部署到服务器上就会报错,日志打印看的传参都没有问题,这是什么原因?
添加回答
举报
0/150
提交
取消
