Hi

This is an extract from the site:   http://xml.apache.org/fop/embedding.html

  Driver driver = new Driver();
  driver.setRenderer(Driver.RENDER_PDF);
  InputHandler inputHandler = new XSLTInputHandler(xmlFile, xslFile);
  XMLReader parser = inputHandler.getParser();
  driver.setOutputStream(new FileOutputStream(outFile));
  driver.render(parser, inputHandler.getInputSource());



The above code should do it.
Rgds
Jay


-----Ursprüngliche Nachricht-----
Von: Fischer Tibor [mailto:[EMAIL PROTECTED]
Gesendet: Donnerstag, 28. Februar 2002 15:07
An: [EMAIL PROTECTED]
Betreff: Re: calling fop from java


that's ok,
sorry but i didn't said, that i have an xml, and an xsl file, and i have
to generate the pdf from them

Fishy

Alexandre Denes dos Santos wrote:

>Use:
>
>Driver driver = new Driver(InputStream in, OutputStream out);
>driver.setRenderer(Driver.RENDER_PDF);
>
>driver.run();
>
>where in is the inputStream to the fo file that you will render and
>out is the outputstream where the pdf content will be write to.
>
>The package is org.apache.fop.apps.
>
>Hope that helps.
>
>Denes
>
>
>
>----- Original Message -----
>From: "Fischer Tibor" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Thursday, February 28, 2002 10:50 AM
>Subject: calling fop from java
>
>
>>hi
>>
>>i would like to call the fop's transformation procedure from a running
>>java application, to create pdf  realtime
>>
>>how is it possible??
>>what method sholud i call??
>>
>>Thanks,
>>Fishy
>>
>>
>
>
>
>
>


Reply via email to