How call method from class file in jsp?
I am desgining a jsp page i need to call a method from a class file.so how it will achived.
# 1
Will you be using scriptlets, JSTL, JSF, struts.... ?You give way too little information to get a decent answer.
# 2
you can declare a bean which will represent your class e.g.
<jsp:useBean id="myClass" class="mypackage.myclass">
then you can call methods of your class using this id anywhere in your jsp page
e.g.
<h1><%=myClass.sayHello();%></h1>