Printing in java

I see there is a way to print using php, is there a way to do this in java (besides me writing all the code I mean)?

Thanks,
D

Unfortunately - there is no java solution so far.

That makes me sad…that means I may have to gasp write my own.

Thanks for the info!

Is there better documentation than this for trying to figure out what the recurring appointment is?

For example:
*
day_3___ - each three days
*
month 2__ - each two month
*
month_1_1_2_ - second Monday of each month
*
week_2___1,5 - Monday and Friday of each second week
*

I need to be able to parse through appointments to place them in a pdf. The recurring appt. looks like a nightmare.

Thanks,
D

So I thought I would try the PHP option and see where that takes me, anyone know what this error could possibly mean?

printScheduler($xml); function PDFErrorHandler ($errno, $errstr, $errfile, $errline) { global $xmlString; if ($errno < 1024) { error_log($xmlString, 3, ‘error_report_’.date(“Y_m_d__H_i_s”).’.xml’); exit(1); } } ?>

Thanks,
D