Print report by Eclipse IDE
I am using eclipse IDE. My application is link to JDBC. How to make a print report by click a JButton?
I am using eclipse IDE. My application is link to JDBC. How to make a print report by click a JButton?
Eclipse is not responsible for printing anything in Java.
JTable has a print( ) method which you can use and so does JTextComponent and its subclasses.
Do a google search for "Java2D printing" and "printing in Swing" and read the results you obtain.
ICE