我有问题,我的名单网格显示不正确变音符号,我发现,当我从Java插入到数据库中的值已经窃听。
此处的帮助后,我改变了我的项目属性 - >文本编码 - >其他 - > UTF-8,这固定我的问题。 事情是这样只在本地解决我的问题。
我需要做的就是我的JBoss服务器上还设置编码莫名其妙。 因为我不能直接访问配置文件,我只能访问此面板。 我能做到这一点从这里?
任何建议表示赞赏,并为这个愚蠢的问题,抱歉,但我都试过了,我可以没有成功想到的。 谢谢。
我有问题,我的名单网格显示不正确变音符号,我发现,当我从Java插入到数据库中的值已经窃听。
此处的帮助后,我改变了我的项目属性 - >文本编码 - >其他 - > UTF-8,这固定我的问题。 事情是这样只在本地解决我的问题。
我需要做的就是我的JBoss服务器上还设置编码莫名其妙。 因为我不能直接访问配置文件,我只能访问此面板。 我能做到这一点从这里?
任何建议表示赞赏,并为这个愚蠢的问题,抱歉,但我都试过了,我可以没有成功想到的。 谢谢。
这可能会帮助你https://community.jboss.org/message/643825#643825
<system-properties>
<property name="org.apache.catalina.connector.URI_ENCODING" value="UTF-8"/>
<property name="org.apache.catalina.connector.USE_BODY_ENCODING_FOR_QUERY_STRING" value="true"/>
</system-properties>
相当肯定的是,你有一个的pageEncoding像这样的东西吗?
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<f:loadBundle basename="i18n.messages" var="msg"/>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
也许这将是有用的人:
Window > Preferences > General > Workspace > Text file encoding
您可以创建拦截在应用程序中的每个请求的过滤器,所以这个过滤器可以设置的字符编码。 有一个线程在这个developer.jboss 。 该过滤器可以如下:
@WebFilter(filterName = "CharacterEncodingF", urlPatterns = {"/*"})
public class CharacterEncodingF implements Filter {
public CharacterEncodingF() {
}
/**
*
* @param request The servlet request we are processing
* @param response The servlet response we are creating
* @param chain The filter chain we are processing
*
* @exception IOException if an input/output error occurs
* @exception ServletException if a servlet error occurs
*/
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain)
throws IOException, ServletException {
request.setCharacterEncoding("UTF-8");
chain.doFilter(request, response);
}
@Override
public void init(FilterConfig filterConfig) throws ServletException {
}
@Override
public void destroy() {
}
}