如何在JSP中打印当前日期?
我想做这样的事情:
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
使用
jsp:useBean
构造java.util.Date
实例并使用 JSTLfmt:formatDate
使用以下命令将其格式化为人类可读的字符串SimpleDateFormat
图案。老式的 scriptlet 方式是:
请注意,当您不使用
@page import
指令时,您需要指定完整的限定类名,这可能是导致你的问题。然而,不鼓励使用scriptlet,因为十年。这一切也在
[jsp]
标记信息页面中进行了演示:)Use
jsp:useBean
to construct ajava.util.Date
instance and use JSTLfmt:formatDate
to format it into a human readable string using aSimpleDateFormat
pattern.The old fashioned scriptlet way would be:
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 :)<%= new java.util.Date().getYear() + 1900 %>
<%= new java.util.Date().getYear() + 1900 %>
我的解决方案:
My solution:
在 Java 8 中打印年份可以使用:
In Java 8 to print year you can use:
您应该使用 JSTL 编写 JSP 并使用其
标签用于格式化日期等。You should be writing JSPs using JSTL and using its
<fmt>
tags to format dates and such.