gpt4 book ai didi

java - 在简单的JSP程序中显示日期

转载 作者:行者123 更新时间:2023-11-30 08:17:17 26 4
gpt4 key购买 nike

我从另一个页面复制了以下 JSP 代码,但是当我从浏览器查看它时,日期不显示。

<HTML>
<BODY>
Hello! The time is now <%= new java.util.Date() %>
</BODY>
</HTML>

我已将其另存为 file.jsp

最佳答案

试试这个(file.jsp):

<%@ page import = "java.util.Date" %>
<%@ page import = "java.text.SimpleDateFormat" %>
<html>
<head>
<%
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String date = sdf.format(new Date());
%>
</head>
<body>
<p>Hello! The time is now <%=date%></p>
</body>
</html>

您可以在 "yyyy-MM-dd HH:mm:ss" 中更改适合您的日期格式。并且,<%=date%>显示结果。祝你好运,伙计:)

结果:

Hello! The time is now 2015-04-07 11:25:47

Note: You have to save this file and run it from a webserver like Tomcat.

关于java - 在简单的JSP程序中显示日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29478673/

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