JSP basics: import a Java class for use in a JSP
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"%>






Add New Comment
Thanks. Your comment is awaiting approval by a moderator.
Do you already have an account? Log in and claim this comment.
Add New Comment