在struts配置如下:
<result name="queryAll" type="xslt">
<param name="exposedValue">models</param>
</result>
models 是查询的list集合,在flex前台已经接收到数据,
向左转 | 向右转
数据库中的日期是:
| 向右转
在struts配置如下:
<result name="queryAll" type="xslt">
<param name="exposedValue">models</param>
</result>
models 是查询的list集合,在flex前台已经接收到数据,
向左转 | 向右转
数据库中的日期是:
| 向右转
向左转|向右转
其中个字段的意思是:
year:年分(在转换成xml格式时,是将当前年份减去1900,在javaAPI里有说明,这里表示的是2013年)
month:月(月是从0开始的,7代表8月份);
date:日(从1到31)
day:星期(0代表星期天)
hours:小时
minutes:分钟
seconds:秒
time:
timeZoneOffSet:
知道了这些属性的意思,再将它们转换成String类型的日期时间格式就好做了。
知道每个字段的意思后再通过new Date(year,month,date,hours,minutes,seconds);转换成date类型。
原文链接:/xml/300020.html