How to redirect system.out.print statements to web page in JSP

you can try this instead of System.out.print:
PrintWriter out = response.getWriter();
out.print(smt);

Leave a Comment