gpt4 book ai didi

jsp - 在 JSTL EL 中获取当前日期并对其进行算术运算

转载 作者:行者123 更新时间:2023-12-04 00:02:37 27 4
gpt4 key购买 nike

在不使用脚本的情况下,在 JSP 中进行日期算术的正确方法是什么?

以下是我正在尝试做的示例:

  • 获取当前年份 (YYYY)
  • 将当前年份减去 1 得到上一年 (YYYY)

  • 谢谢!

    最佳答案

    使用 <jsp:useBean> 新建 Date .使用 JSTL <fmt:formatDate> 从中获得一年。使用 EL减去它。

    <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
    <jsp:useBean id="now" class="java.util.Date" />
    <fmt:formatDate var="year" value="${now}" pattern="yyyy" />
    <p>Current year: ${year}</p>
    <p>Previous year: ${year - 1}</p>
    结果:

    Current year: 2011

    Previous year: 2010


    请注意 pattern全年为 yyyy ,不是 YYYY .

    关于jsp - 在 JSTL EL 中获取当前日期并对其进行算术运算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4949554/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com