6

我试图像以前搜索的那样在 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()));
    %>

为什么它说“日历无法解决”?哪里错了?

4

3 回答 3

8

Calendar在一个java.util包中。您缺少导入。

于 2012-05-09T12:32:33.657 回答
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()));
    %>
于 2012-05-09T12:35:41.513 回答
2

导入日历类,如下所示

<%@ page import="java.util.Calendar" %>
于 2012-05-09T12:35:28.330 回答