gpt4 book ai didi

Java HTTP 服务器以 utf8 格式响应

转载 作者:行者123 更新时间:2023-12-01 20:53:01 25 4
gpt4 key购买 nike

我有一个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 字符造成的(希伯来字符,当我省略它们时,错误就消失了)。
我怎样才能解决这个问题?这是服务器问题还是客户端问题?

最佳答案

长度也不对。再进一步一点:

    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();

关于Java HTTP 服务器以 utf8 格式响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42864946/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com