gpt4 book ai didi

jsp - JSP 中的多部分表单,Glassfish 中的编码问题

转载 作者:行者123 更新时间:2023-12-04 02:56:47 26 4
gpt4 key购买 nike

我使用 Eclipse 和 Glassfish 从我的 jsp/servlet 获取无效字符。

如果我输入“Pêche”,我会得到“Pêªches”。所以,这是编码问题。我尝试了几种想法,但没有任何效果。

我仍然有 Mojibake。

这是我的 servlet 代码:

String name = (String) request.getParameter("templateName");

这是我的 jsp 内容:

<%@ page pageEncoding="UTF-8"%>

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>....</title>
</head>
<body>
<form action="<c:url value="/form/edit" />" method="post" enctype="multipart/form-data">

<input type="text" id="templateName" name="templateName" />
<br />

<input type="submit" value="Valider" class="button button_blue margin_button_form"/>
</form>
</body>
</html>

还有什么建议吗?

最佳答案

最后,它似乎是一个 Glassfish 错误:https://java.net/jira/browse/GLASSFISH-18516

解决得非常好:new String (s.getBytes ("iso-8859-1"), "UTF-8"); ( https://stackoverflow.com/a/549634/1458542 )

关于jsp - JSP 中的多部分表单,Glassfish 中的编码问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16540470/

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