我试图在JSP中获取日期,就像之前搜索过的那样,但它没有用。这是我的代码。
<%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*, java.text.*;" errorPage="" %>
<%!
DateFormat tipe = new SimpleDateFormat("EEE, MMM d, ''yy");
Calendar cal = Calendar.getInstance();
%>
<%
out.print(tipe.format(cal.getTime()));
%>
为什么说“日历无法解决”?哪里出错了?
答案 0 :(得分:7)
Calendar
位于java.util
个包中。你缺少导入。
答案 1 :(得分:3)
更新的代码应如下所示:
<%@ page contentType="text/html; charset=utf-8" language="java" import="java.util.*, java.text.*;" errorPage="" %>
<%!
DateFormat tipe = new SimpleDateFormat("EEE, MMM d, ''yy");
Calendar cal = Calendar.getInstance();
%>
<%
out.print(tipe.format(cal.getTime()));
%>
答案 2 :(得分:2)
导入日历类,如下所示
<%@ page import="java.util.Calendar" %>