Importing Java classes enables the use of that class without using the fully qualified class name. Java classes can also be imported into JSPs with page directives.
To import the Java class java.util.Calendar for use in a JSP, use one of the following:
<%@page import="java.util.Calendar"%>