我有一个http服务器接收POST请求并从mysql数据库中获取数据
这是服务器的相关部分:
@Override
public void handle(HttpExchange he) throws IOException {
JSONArray jsonArr = null;
InputStreamReader isr = new InputStreamReader(he.getRequestBody(), "utf-8");
BufferedReader br = new BufferedReader(isr);
String query = br.readLine();
JSONObject postData=null;
try {
postData=Constants.parseQuery(query);
} catch (JSONException e) {
System.out.println("ERROR: SelectHandler,handle,parseQuery, on query: " + query);
}
// Object t=params.entrySet().
try {
query=Constants.getSelectQuery(postData);
jsonArr = MySQLQueryExecutor.getInstance().getItems(query);
} catch (JSONException e) {
System.out.println("ERROR: SelectHandler,handle,getItems, on query: " + query);
}
String encoding = "UTF-8";
String ret=jsonArr.toString();
he.getResponseHeaders().set("Content-Type", "application/json; charset=" + encoding);
he.sendResponseHeaders(200, ret.length());
System.out.println(ret);
OutputStream os = he.getResponseBody();
ret= URLDecoder.decode(ret, "UTF-8");
os.write(ret.toString().getBytes());
os.close();
}
我可以看到服务器处理请求并发送响应,但在客户端我收到错误
错误是由于响应中的utf8字符(希伯来字符,当我省略它们时,错误消失了)。
我怎样才能解决这个问题?这是服务器还是客户端问题?
答案 0 :(得分:2)
长度也是错误的。再进一步:
String encoding = "UTF-8";
String ret = jsonArr.toString();
he.getResponseHeaders().set("Content-Type", "application/json; charset=" + encoding);
//ret= URLDecoder.decode(ret, "UTF-8");
byte[] bytes = ret.getBytes(StandardCharsets.UTF_8);
he.sendResponseHeaders(200, bytes.length);
System.out.println(ret);
OutputStream os = he.getResponseBody();
os.write(bytes);
os.close();
答案 1 :(得分:1)
a)您的Content-Type标头字段已损坏。 application / json中没有charset参数。参见https://greenbytes.de/tech/webdav/rfc7159.html#rfc.section.11
中的最后一句b)你需要发送从String.getBytes(" UTF-8")和
获得的字节c)还有如何计算内容长度(因此在编码为UTF-8字节后,而不是之前)。