Struts2中date标签乱码问题解决
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts2中date标签乱码问题解决相关的知识,希望对你有一定的参考价值。
1.出现的问题如下图
八月份以前没有问题,但从九月份开始就会出现乱码问题
2.开始解决
(1)在使用标签的JSP中加入:
<%@taglib prefix="s" uri="/struts-tags" %> <%@taglib prefix="sx" uri="/struts-dojo-tags"%>
与
<sx:head debug="true" locale="zh" parseContent="true" extraLocales="en-us,zh-cn,de-de" />
如:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@taglib prefix="s" uri="/struts-tags" %> <%@taglib prefix="sx" uri="/struts-dojo-tags"%> <html> <head> <title>表单</title> <sx:head debug="true" locale="zh" parseContent="true" extraLocales="en-us,zh-cn,de-de" /> .....
(3) 最终样式
以上是关于Struts2中date标签乱码问题解决的主要内容,如果未能解决你的问题,请参考以下文章
关于Struts2 标签<s:property>中文乱码问题
SSH项目web.xml文件的常用配置struts2的过滤器spring监听器解决Hibernate延迟加载问题的过滤器解决中文乱码的过滤器