I use java.awt.print
and javax.print
to enable printing in our applications. Is it possible to get a notification when printing is completed?
Asked
Active
Viewed 265 times
3

Joachim Sauer
- 302,674
- 57
- 556
- 614

Jayan
- 18,003
- 15
- 89
- 143
1 Answers
1
Your answer is to use a PrintJobListener
. Take a look at this answer for more information and an example.

Community
- 1
- 1

BoffinBrain
- 6,337
- 6
- 33
- 59
-
1You can also extend PrintJobAdapter and override public void printJobCompleted(PrintJobEvent pje) { } – Reddymails Jun 13 '14 at 13:50