Web服务器和UTF-8编码

发布于 12-02 09:29 字数 357 浏览 0 评论 0原文

我正在用 java 编写一个 Web 服务器,当浏览器发送带有重音字符(例如 à è ì ò ù)的字符串(使用 GET 或 POST)时,服务器会收到奇怪的符号。 我想我应该使用UTF-8编码,但我不知道如何。 你能给我建议一个解决方案吗? (客户端/服务器端都可以) 谢谢您的建议!

[编辑] 我在网络服务器上使用InputStreamReader。我做了一个测试,发送“àèìòù”并用wireshark嗅探http数据包:

Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3\r\n ... 文本=%E8%E0%EC%F2%F9

I'm writing a web server in java, and when the browser sends a string (with GET or POST) with accented characters (for example à è ì ò ù) the server receives strange symbols.
I think I should use UTF-8 encoding, but I don't know how.
Can you suggest to me a solution? (it's ok both client/server side)
Thank you in advice!

[EDIT]
I'm using InputStreamReader on the web server. I did a test sending "àèìòù" and sniffing the http packet with wireshark:

Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3\r\n
...
text=%E8%E0%EC%F2%F9

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

捶死心动2024-12-09 09:29:49

您需要使用 < 从套接字读取输入流code>InputStreamReader 是用 "UTF-8" 作为第二个参数构造的。但是,如果客户端在 Content-Type 请求标头中指定了 charset,那么您应该使用它。

You need to read the input stream from the socket using an InputStreamReader which is constructed with "UTF-8" as 2nd argument. But if the client specified a charset in the Content-Type request header, then you should use that instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文