Hi all, in order to do a batch print of pdf files that
are on my customers local pc, I would like to run
the equivalent of

"FOP -xml 1.xml -xsl 2.xsl -print"
programmatically, is there another way than resorting to a 
Runtime.getRuntime().exec("..")

this is what I am thinking I have to do, but would prefer to
do this from java without using runtime.exec
=========================================
String printPdfCmd = "FOP -xml 1.xml -xsl 2.xsl -print";
Runtime runtime = Runtime.getRuntime();
Process proc = runtime.exec(printPdfCmd);




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to