Comparing dates using struts 2 in JSP(在 JSP 中使用 struts 2 比较日期)
问题描述
我想使用 Struts2
One is returned from the backend (test.currentDate) == "2012-11-15)"
The other one I just set "2014-10-19"
如何比较这两个日期?
我的代码如下:
<s:set name="currentDate" value="%{test.currentDate}"/>
<s:set name="futureDate" value="2014-10-19"/>
<s:if test="%{#currentDate.before(#futureDate)}">
<s:text name="test"/> <s:date name="test.currentDate" format="MM/yy"/>
</s:if>
<s:else>
<s:text name="test2"/>
</s:else>
推荐答案
在上面您尝试将字符串与导致问题的日期对象进行比较.我建议您编写一个帮助类来比较日期并利用 OGNL 静态方法访问.OGNLBasics-Accessingstaticproperties
In the above you were trying compare string with date object that's causing the problem. I suggest you to write a helper class to compare date and take the advantage of OGNL static method access. OGNLBasics-Accessingstaticproperties
<s:set var="currentDate" value="%{new java.util.Date()}"/>
<s:set var="futureDate" value="%{new java.util.Date()}"/>
<s:property value="{#currentDate}"/>
<s:property value="{#futureDate}"/>
<s:if test="%{@com.mycompany.temp.strtus2.example.HelloWorld@compareDate(#currentDate, #futureDate)}">
<div>Do your stuff</div>
</s:if>
<s:else>
<div>else condition</div>
</s:else>
实用类
public static boolean compareDate(Date currentDate, Date futureDate) {
boolean flag = false;
if (removeTime(currentDate).equals(removeTime(futureDate))) {
flag = true;
}
return flag;
}
public static Date removeTime(Date date) {
Calendar cal = Calendar.getInstance();
cal.setTime(date);
cal.set(Calendar.HOUR_OF_DAY, 0);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
return cal.getTime();
}
这篇关于在 JSP 中使用 struts 2 比较日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 JSP 中使用 struts 2 比较日期
基础教程推荐
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 降序排序:Java Map 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01