在我的Struts2项目中,从我的java动作类返回了List<Object>
。对象中的一个数据成员是长形式的日期(来自MySQL数据库)。我无权更改类结构或数据库。我需要输出这个日期作为人类可读。
我想实现:
<% Date mydate = new Date (long dateAsLong); %>
<%= mydate.toString() %>
这里dateAsLong是返回对象的数据成员。 我需要这个帮助,因为我必须将它应用于其他情况。就像我必须使用以下方法检查JSP本身中的变量一样:
<s:if test='<s:property value="priority"/> == 1'>
/*Some img to display here*/
</s:if>
我是新手,想要使用普通的struts2和JSP。请帮助我知道如何访问<s:property/>
中返回的变量。
感谢。
答案 0 :(得分:2)
<s:set/>
标记将值放在ValueStack上,这在scriptlet中并不方便(我建议你不要使用scriptlet)。
首先,关于以下问题:
<s:if test='<s:property value="priority"/> == 1'>
/*Some img to display here*/
</s:if>
试试这个:
<s:if test="%{priority == 1}">
/*Some img to display here*/
</s:if>
您也可以使用JSP EL:
<c:if test="${action.priority == 1}">
/*Some img to display here*/
</c:if>
至于日期,asdoctrey提到,你可以在你的动作类中进行这种转换。我过去使用自定义JSP函数处理过这个问题。
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
version="2.0">
<description><![CDATA[JSP Functions]]></description>
<display-name>JSP Functions</display-name>
<tlib-version>1.0</tlib-version>
<short-name>ex</short-name>
<uri>http://www.example.com/tags/jsp-functions</uri>
</taglib>
/**
* The JSTL fmt:formatDate tag expects a Date and the fmt:parseDate
* apparently expects to parse from a String representation of the
* date. This method allows you to easily convert a long into a Date
* object for use in fmt:formatDate.
* <p/>
* The long passed in to this method is expected to be a UNIX epoch
* timestamp (number of milliseconds since Jan. 1, 1970). For more
* details, see {@link java.util.Date#Date(long)}.
*
* @param epoch The long to convert. Expected to be an epoch timestamp.
* @return A new Date object.
*/
public static Date longToDate(final long epoch) {
return new Date(epoch);
}
<%@ taglib prefix="ex" uri="http://www.example.com/tags/jsp-functions" %>
${ex:longToDate(action.dateAsLong)}