gpt4 book ai didi

java - apache tomcat 和 glassfish 服务器不解码 utf-8 字符?

转载 作者:行者123 更新时间:2023-11-28 22:42:13 25 4
gpt4 key购买 nike

这是我的 Jsp 页面:

<!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 trouble,delhi,????????_30.64741430_76.817313799

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

最佳答案

您可以尝试在顶部添加:

<%@page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>

我认为这会解决问题。如果没有,您能否提供更多信息?

你用的是eclipse吗?如果是,你是在windows下开发吗?在windows下,eclipse默认配合WINDOWS CP1252编码对jsp等文件进行编码。大概写的文字可以是CP1252字符集。

tomcat 和 glashfish 在哪里运行? window ? Linux?

关于java - apache tomcat 和 glassfish 服务器不解码 utf-8 字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27167099/

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