Jetty 中 HTTP-Response 状态码中的 Unicodes

Unicodes in statuscode of HTTP-Response in Jetty

我想发送 这样的字符作为状态码。 F.e.: 484 - User „me“ not found

在我的测试示例中,我尝试了以下操作(我知道 setStatus(int,string) 已被弃用):

response.setStatus(HttpServletResponse.SC_NOT_FOUND, "User „me“  not found");

我在客户端得到的是:User ?me? not found

有没有办法将这些字符作为状态码发送到码头?我对此的研究没有成功..

我正在使用码头 9.4.3。

不,非 ASCII 字符的行为基本上未定义。

此外,原因短语在 HTTP/2 中不存在,因此我不会在其上构建任何功能。