gpt4 book ai didi

java - 我如何告诉 Tomcat 在内部使用 UTF-8?

转载 作者:行者123 更新时间:2023-11-30 06:19:29 26 4
gpt4 key购买 nike

所以我有这个非常简单的 html 文件:

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<form method="post" action="formpost.do" accept-charset="utf-8">
<label for="id">Your name please:</label>
<input id="id" type="text" name="name"/>
<input type="submit"/>
</form>
</body>
</html>

和 output.jsp:

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<%= request.getAttribute("name") %>
</body>
</html>

当我在表单中键入“ğğğ”时,我在 output.jsp 中看到了预期的“ğğğ”。处理此表单的 Servlet 如下所示:

@Override
protected void doPost(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws ServletException, IOException {

httpServletResponse.setCharacterEncoding("UTF-8");
httpServletRequest.setCharacterEncoding("UTF-8");

String name = httpServletRequest.getParameter("name");
httpServletRequest.setAttribute("name",name);

PrintWriter printWriter = new PrintWriter(new File("C:/text.txt"));
printWriter.write(name);
printWriter.flush();
printWriter.close();

httpServletRequest.getRequestDispatcher("/output.jsp")
.forward(httpServletRequest, httpServletResponse);
}

问题是,在 text.txt 文件中我会看到“???”而不是“ğğğ”。几个小时以来,我一直在尝试解决这个问题,但没有成功。

我有

JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF8

在 Windows 环境变量中,但据我所知它没有改变。

当我调试此应用程序时,变量“name”在调试器窗口中显示为“ğğğ”(如果有帮助的话)。

那么我怎样才能使 System.out 打印出正确的字符呢?

编辑 1当我创建一个单独的 Java 项目并简单地运行时:

public static void main(String[] args)
throws Exception {
PrintWriter printWriter = new PrintWriter(new File("C:/text.txt"));
printWriter.write("ğğğ");
printWriter.flush();
printWriter.close();
}

文本文件中的一切都符合预期。

编辑 2我的 server.xml 中已经有:

<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8"/>

最佳答案

我认为这不是 Tomcat 问题。这是一个关于您如何写入文件的 Java 问题。

书写时使用合适的字符集。

PrintWriter printWriter = new PrintWriter(new File("C:/text.txt"), "UTF-8");

显然还有阅读。

关于java - 我如何告诉 Tomcat 在内部使用 UTF-8?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23044976/

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