我试图在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()));
%>
为什么说“日历无法解决”?哪里出错了?
最佳答案
Calendar位于java.util包中.你缺少导入.
原文链接:https://www.f2er.com/java/437328.html