How to Print JTable in java ?
The
JTable class provides support for printing tables. The JTable printing API includes methods that allow you to implement both basic and advanced printing tasks.
For common printing tasks, when you need to simply print a table, use the
print method directly. The printmethod has several forms with various argument sets. This method prepares your table, gets a corresponding Printable object, and sends it to a printer.
Comments
Post a Comment