Exception in thread "main" java.io.IOException: Server returned HTTP response code: 400 fo
Posted crazy_itman
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Exception in thread "main" java.io.IOException: Server returned HTTP response code: 400 fo相关的知识,希望对你有一定的参考价值。
最近一次项目上线时遇到一个挠头的bug,开发环境和测试环境都是正常的,一旦到了生产环境就报“网络超时”,经过仔细分析,最终定位到了相关的代码段,于是在本地进行调试。
流程大致是这样的,页面发送一个ajax请求,后台接收到这个ajax请求之后会请求一个指定的url,问题就出在了请求这个url上。本地调试的情况是这样的,如果把这个url替换成本地的,则正常,如果替换成了远程指定的url,则tomcat会报出错误:Exception in thread "main" java.io.IOException: Server returned HTTP response code: 400 for URL xxx。
最终解决方案如下,下面是相关代码片段:
String params = request.getParameter("params");
JSONObject msgObj = JSON.parseObject(params);
result = getResponseFromUrl(mgw, new String(msgObj.toString().getBytes("iso8859-1"), "UTF-8").replaceAll("\\"", "'").getBytes());
最主要的地方是一次转码和一次替换,一次转码是指从iso8859-1转换成UTF-8,一次替换是指把json字符串中的所有的双引号替换为单引号。
以上是关于Exception in thread "main" java.io.IOException: Server returned HTTP response code: 400 fo的主要内容,如果未能解决你的问题,请参考以下文章
Exception in thread "main" java.lang.UnsupportedClassVersionError
Exception in thread "main" java.util.InputMismatchException
Exception in thread "main" java.lang.ClassCastException
Exception in thread "main" java.lang.UnsatisfiedLinkError:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1