You're kidding! The examples in the tutorial are using System.out in the jsp and expecting the output to go to the browser? If you have scriptlets, just do something like:
<%
out.println("<P>Some data or whatever you want....</P>");
...
%>
In other words, just substitute out where you have System.out and your output should go to the browser instead of the Tomcat application window.