Printed directly in Java

2

I need to create a form for a thermal printer (non-fiscal), in which case I thought about creating a JasperReports form, but Jasper searches the database for the information and wanted to get the information directly from my system before sending it to the bank of data, so I think I save time in the process and it saves time in the user having to record and then print. There is something I can rely on to create this form.

    
asked by anonymous 31.03.2015 / 19:42

1 answer

0

I used another way to do the printout, directly and without having to store the data in the database and then search for them, and it is possible to pass parameters through a HashMap.

For those who need information look for class java.awt.print.PrinterJob which will be very useful.

    
29.06.2015 / 13:14