If you want to import one class in jsp
<%@ page import="com.MyClass" %>
Where com is the package name.
And import more than one package use
<%@ page import="com.xyz.*" %>
If we want to import scanner class in jsp page
then use import java.util.*;
and for date
imort java.util.date.*;
No comments
Post a Comment