I have a java class which performs some operations on files. Since the java code is huge I don\'t want to write this code in jsp. I want to call the methods in jsp whenever
Although I'll not advice you to do any java calls in JSP, you can do this inside your JSP:
<% //Your java code here (like you do in normal java class file. %>
In case you're wondering, the <% ... %> section is called scriptlet :-)
<% ... %>