All you need to do is create a virtual browser:
URL pageYouWant = new URL(completeRequestString);
InputStream in = pageYouWant.openStream();
// burn off the header from in, then write the rest to a file...
This will all be done, of course, in a completely seperate JVM than your
Tomcat JVM.
It sounds like an ineresting application of jsp.
John
Juan Ramirez wrote:
> I would like to write the output of a jsp file to a static html file
> instead of sending it out to a browser. I have a pagebuilding system
> that uses the power of jsp to do a lot of things, but I need to write
> the resulting jsp to a file instead of streaming it out. Has anyone
> done anything like this?
>
> Thanks.
>
> Juan