java servlet 文件中的 UTF-8 有一些问题。当我在 URL 中获取参数值时,我对 UTF-8 字符有一些问题。它不能正确显示日文字符。
Jsp头已经有
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
我将连接器中的 URIEncoding 设置添加到 server.xml 中的 UTF-8。
<Connector URIEncoding="UTF-8" connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
我在jsp中编写了如下代码。
<s:textfield key="txt_name" name="txt_name" id="txt_name"
maxlength="64"></s:textfield>
<a href="javascript:showModalWindow('PopUpFile!init.action?<%=Common.PASSWORD%>=<%=Common.encript(ID, Code)%>','',940,650);">
<s:property value="PopUp Link" />
</a>
<script>
function showModalWindow(x_URL, x_ARG, x_WIDTH, x_HEIGHT) {
var x_OPT = "dialogHeight: " + x_HEIGHT + "px; " + "dialogWidth: "
+ x_WIDTH + "px; "
+ "edge: Raised; center: Yes; resizable: Yes; status: Yes;";
x_URL += "&name="+document.getElementById("txt_name").value;
var retValue = window.showModalDialog(x_URL, x_ARG, x_OPT);
if (retValue != null) {
document.forms.frm.action = "ParentFile!getUser.action";
document.forms.frm.submit();
}
}
</script>
然后,我在 java servlet 中编写了如下代码。
if(g_request.getParameter("name") != null){
g_session.setAttribute(NAME, g_request.getParameter("name"));
}
我还用request.setCharacterEncoding()
java servlet 中的方法进行了测试,但它并没有真正起作用。尽管我尝试了很多方法来回答其他人在stackoverflow中与servlet中字符编码相关的问题,但直到我解决了我的问题。
我该怎么做才能正确显示字符编码?提前致谢。