使用jstl获取明天的日期

时间:2012-12-01 16:18:16

标签: jsp calendar jstl

我尝试了以下内容,以便在JSTL中获取明天的日期:

           <c:set var="currDate" value="<%=java.util.Calendar.getInstance()%>"/>
           <fmt:formatDate type="date" value="${currDate.add(java.util.Calendar.DATE,1)}" var="dayEnd"/>

但是当我打印出来时至少使用

检查var currDate
           <c:out value="${currDate}" />
显然,它没有用。那我该怎么办?

3 个答案:

答案 0 :(得分:8)

<%@ page import="java.util.Date" %>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<c:set var="today" value="<%=new Date()%>"/>
<c:set var="tomorrow" value="<%=new Date(new Date().getTime() + 60*60*24*1000)%>"/>
Today: <fmt:formatDate type="date" value="${today}" pattern="d"/>   
Tomorrow: <fmt:formatDate type="date" value="${tomorrow}" pattern="d"/>

答案 1 :(得分:8)

有更简洁的方法直接在JSTL中执行此操作

<jsp:useBean id="ourDate" class="java.util.Date"/>
<jsp:setProperty name="ourDate" property="time" value="${ourDate.time + 86400000}"/>
<fmt:formatDate value="${ourDate}" pattern="dd/MM/yyyy"/>

但是,当时钟变为夏令时时,你不能依赖java.util.Date。

因此,如果您真的想在JSTL中完成所有操作,可以使用Spring标记,Joda Time类和Joda标记。

    <jsp:useBean id="ourDate" class="org.joda.time.DateTime"/>
    <spring:eval expression="ourDate.plusDays(1)" var="tomorrow"/>
    tomorrow: <joda:format value="${tomorrow}" style="SM" />

spring eval标签让你可以做一些我们以前用过的小事所做的顽皮事情,并且JodaTime可以信任,总能给你一个准确的结果。

答案 2 :(得分:1)

<%
Calendar now=Calendar.getInstance();
Calendar today=Calendar.getInstance();
Calendar calendar=Calendar.getInstance();
today.set(today.get(Calendar.YEAR),today.get(Calendar.MONTH), today.get(Calendar.DAY_OF_MONTH));

// Convert the date string into a date to manipulate the dates
String year = (String)pageContext.getAttribute("year");
String month = (String)pageContext.getAttribute("month");
String day = (String)pageContext.getAttribute("day");
if (year == null) {
    year = String.format("%4d",now.get(Calendar.YEAR));
    int mth = now.get(Calendar.MONTH) + 1;
    month = String.format("%02d",mth);
    day = String.format("%02d",now.get(Calendar.DAY_OF_MONTH));
}

String str_date = month + "/" + day + "/" + year;
SimpleDateFormat format = new SimpleDateFormat("MM/dd/yyyy");
Date date = (Date)format.parse(str_date);

calendar.setTime(date);
Date [] arrayOfDates = new Date[4];
arrayOfDates[0] = calendar.getTime();

pageContext.setAttribute("calendarDate",arrayOfDates);
pageContext.setAttribute("year",year);
pageContext.setAttribute("month",month);
pageContext.setAttribute("day",day);%>