I tried setting the date in JSP, like what I was looking for before, but that didn't work. Here is my code.
<%@ 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()));
%>
Why did he say "Calendar cannot be allowed"? Where is the mistake?
source
share