Use the useBean tag in your JSP (For oading Java classes).
First, write a method in your Java program (Search.java?) to return the results (can be any array / object / any valid Java data type) instead of doing it in the main().
Next, in the JSP program, give the useBean tag as such.
The useBean tag is like this.
<jsp:useBean id="fff" name="yourJavaBeanNameWithFullPackageStructure" scope="page"/>
The id is the identifier by which you can access the bean in the JSP page.
Suppose the method is getResults() and returns a String Array,
in your JSP, you will code as :
<%
String[] results = fff.getResults();
%>
Hope it helps