如何获取客户端编码?

发布于 2024-12-08 21:35:25 字数 114 浏览 0 评论 0原文

我正在编写一个 jsp 网站,在其中我收到来自客户端的查询。我必须标准化查询的编码,我的意思是我应该将查询的编码更改为 UTF-16。因此,我需要知道客户端的编码。

浏览器是否会根据请求发送此信息?

I'm writing a jsp website in which I get a query from client. I have to normalize the encoding of the query, I mean I should change the query from its encoding to UTF-16. Because of that, I need to know the encoding of the client.

Does browsers send this information on the request ?

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

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

发布评论

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

评论(2

山田美奈子 2024-12-15 21:35:25

既然你使用的是jsp,你应该尝试使用java提供的一些有用的方法。

public Map getHeaderFields()

将为您提供您正在搜索的所有标题的地图。

此外您还有:

 String getContentEncoding() 
          Returns the value of the content-encoding header field.

 String getContentType() 
          Returns the value of the content-type header field.

 String     getCharacterEncoding()
Returns the name of the character encoding used in the body of this request. This method returns null if the request does not specify a character encoding

Since you are using jsp, you should try to use some usefull methods that java offers.

public Map getHeaderFields()

will give you a Map of all headers you are searching for..

Moreover you have:

 String getContentEncoding() 
          Returns the value of the content-encoding header field.

 String getContentType() 
          Returns the value of the content-type header field.

 String     getCharacterEncoding()
Returns the name of the character encoding used in the body of this request. This method returns null if the request does not specify a character encoding
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文