如何在JSP中打印当前日期?

发布于 2024-09-18 18:41:39 字数 364 浏览 9 评论 0原文

我想做这样的事情:

 <?php echo date('Y'); ?>

但是然后在 .jsp 文件中。我看到的所有 教程 都需要在某个地方构建一个类。我们正在运行 appFuse 和 Tapestry。当然,其中之一(如果不是 Java 本身)为我们提供了一些方法来完成此类事情,而无需所有开销。

这似乎应该有效,但事实并非如此:

 <%= new Date.getYear() %>

I want to do something like this:

 <?php echo date('Y'); ?>

But then in a .jsp file. All the tutorials I'm seeing require building a class somewhere. We're running appFuse and Tapestry. Surely one of those (if not Java itself) provide us with something to do this sort of thing without all that overhead.

This seems like it should work, but doesn't:

 <%= new Date.getYear() %>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

<逆流佳人身旁 2024-09-25 18:41:39

使用 jsp:useBean 构造 java.util.Date 实例并使用 JSTL fmt:formatDate 使用以下命令将其格式化为人类可读的字符串SimpleDateFormat图案。

<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<jsp:useBean id="date" class="java.util.Date" />
Current year is: <fmt:formatDate value="${date}" pattern="yyyy" />

老式的 scriptlet 方式是:

<%= new java.text.SimpleDateFormat("yyyy").format(new java.util.Date()) %>

请注意,当您不使用 @page import 指令时,您需要指定完整的限定类名,这可能是导致你的问题。然而,不鼓励使用scriptlet,因为十年。

这一切也在 [jsp] 标记信息页面中进行了演示:)

Use jsp:useBean to construct a java.util.Date instance and use JSTL fmt:formatDate to format it into a human readable string using a SimpleDateFormat pattern.

<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<jsp:useBean id="date" class="java.util.Date" />
Current year is: <fmt:formatDate value="${date}" pattern="yyyy" />

The old fashioned scriptlet way would be:

<%= new java.text.SimpleDateFormat("yyyy").format(new java.util.Date()) %>

Note that you need to specify the full qualified class name when you don't use @page import directives, that was likely the cause of your problem. Using scriptlets is however highly discouraged since a decade.

This all is demonstrated in the [jsp] tag info page as well :)

源来凯始玺欢你 2024-09-25 18:41:39

<%= new java.util.Date().getYear() + 1900 %>

<%= new java.util.Date().getYear() + 1900 %>

放赐 2024-09-25 18:41:39

我的解决方案:

<%@page import="java.util.Calendar"%>
<%@page import="java.util.GregorianCalendar"%>
    <%
      GregorianCalendar cal = new GregorianCalendar();
      out.print(cal.get(Calendar.YEAR));
    %>

My solution:

<%@page import="java.util.Calendar"%>
<%@page import="java.util.GregorianCalendar"%>
    <%
      GregorianCalendar cal = new GregorianCalendar();
      out.print(cal.get(Calendar.YEAR));
    %>
溺渁∝ 2024-09-25 18:41:39

在 Java 8 中打印年份可以使用:

<%= LocalDate.now().getYear() %>

In Java 8 to print year you can use:

<%= LocalDate.now().getYear() %>
风启觞 2024-09-25 18:41:39
<%@page import="java.time.LocalDate"%>

${LocalDate.now().year}
<%@page import="java.time.LocalDate"%>

${LocalDate.now().year}
無心 2024-09-25 18:41:39

您应该使用 JSTL 编写 JSP 并使用其 标签用于格式化日期等。

You should be writing JSPs using JSTL and using its <fmt> tags to format dates and such.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文