JSP basics: import a Java class for use in a JSP

Contributor Icon Contributed by qmchenry Date Icon March 11, 2004  
Tag Icon Tagged: JSP programming

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"%>

Previous recipe | Next recipe |
 

 
close Reblog this comment
blog comments powered by Disqus