-
Bug
-
Resolution: Won't Fix
-
P4
-
6
-
x86
-
windows_xp
I have created a JTextPane and loaded a html file. I am calling it's print method from within the run() method of a Runnable implementation. I am creating multiple threads using this Runnable implementation and starting them in a loop. All the print methods use the same print service and all are printing to different files.
When all the threads start calling the print method of JTextPane, lot of PrinterExceptions are thrown repeatedly. This is noticed only on WinXP and not reproducible on SolSparc10. This is reproducible on Mustang-b59d as well as b92. print() method is not supposed to throw any exception when called from multiple threads since we have claimed explicitly that it is thread-safe.
Here is the exception:
java.awt.print.PrinterException: A StartDocPrinter call was not issued.
at sun.awt.windows.WPrinterJob._startDoc(Native Method)
at sun.awt.windows.WPrinterJob.startDoc(WPrinterJob.java:1194)
at sun.print.RasterPrinterJob.print(RasterPrinterJob.java:1337)
at javax.swing.text.JTextComponent$1.call(JTextComponent.java:2295)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:288)
at java.util.concurrent.FutureTask.run(FutureTask.java:139)
at javax.swing.text.AbstractDocument.render(AbstractDocument.java:403)
at javax.swing.text.JTextComponent$2.run(JTextComponent.java:2312)
at javax.swing.text.JTextComponent.print(JTextComponent.java:2317)
at JTextCompPrintTest$JTextCompTask.run(JTextCompPrintTest.java:99)
at java.lang.Thread.run(Thread.java:620)
I have attached a sample test. Execute the sample test as follows:
'java JTextCompPrintTest [no. of threads]' - I reproduced for 20-25 threads.
When all the threads start calling the print method of JTextPane, lot of PrinterExceptions are thrown repeatedly. This is noticed only on WinXP and not reproducible on SolSparc10. This is reproducible on Mustang-b59d as well as b92. print() method is not supposed to throw any exception when called from multiple threads since we have claimed explicitly that it is thread-safe.
Here is the exception:
java.awt.print.PrinterException: A StartDocPrinter call was not issued.
at sun.awt.windows.WPrinterJob._startDoc(Native Method)
at sun.awt.windows.WPrinterJob.startDoc(WPrinterJob.java:1194)
at sun.print.RasterPrinterJob.print(RasterPrinterJob.java:1337)
at javax.swing.text.JTextComponent$1.call(JTextComponent.java:2295)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:288)
at java.util.concurrent.FutureTask.run(FutureTask.java:139)
at javax.swing.text.AbstractDocument.render(AbstractDocument.java:403)
at javax.swing.text.JTextComponent$2.run(JTextComponent.java:2312)
at javax.swing.text.JTextComponent.print(JTextComponent.java:2317)
at JTextCompPrintTest$JTextCompTask.run(JTextCompPrintTest.java:99)
at java.lang.Thread.run(Thread.java:620)
I have attached a sample test. Execute the sample test as follows:
'java JTextCompPrintTest [no. of threads]' - I reproduced for 20-25 threads.