gpt4 book ai didi

java - 无法使用泰语解码 utf-8?

转载 作者:太空宇宙 更新时间:2023-11-04 06:23:35 24 4
gpt4 key购买 nike

这是我的 JSP 页面:

<%-- 
Document : new jsp1
Created on : Nov 24, 2014, 12:38:07 PM
Author : Java
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<%
String msg="206_John_help i m in trouble,delhi,อินเดีย_30.64741430_76.817313799";
String result = java.net.URLEncoder.encode(msg, "UTF-8");
System.out.println("The msg is "+result);
String result1=java.net.URLDecoder.decode(result, "UTF-8");
System.out.println("The decoded msg is "+result1);

%>
</body>
</html>

输出为206_John_help i m in麻烦,delhi,??????_30.64741430_76.817313799

我总是得到 ?????? 而不是泰文字母。如何在解码时获取泰文字母?

最佳答案

问题不在于消息的编码和解码,而在于服务器容器。似乎服务器无法正确显示特殊字符,因此无法处理请求中的特殊字符。

如果您在 JSP 页面本身中显示这些值,则一切正常。

示例:

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<%
String msg="206_John_help i m in trouble,delhi,อินเดีย_30.64741430_76.817313799";
System.out.println("The original message "+msg);
String result = java.net.URLEncoder.encode(msg, "UTF-8");
System.out.println("The msg is "+result);
String result1=java.net.URLDecoder.decode(result, "UTF-8");
System.out.println("The decoded msg is "+result1);

%>
Original message <%=msg %><br />
Encrypted message <%=result %> <br />
Decrypted message <%=result1 %>
</body>
</html>

关于java - 无法使用泰语解码 utf-8?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27126382/

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