Results 1 to 2 of 2
- 07-30-2007, 01:45 PM #1
Member
- Join Date
- Jul 2007
- Posts
- 43
- Rep Power
- 0
Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException
I have this code for printing a html file.
I pass a String with the html code in textString.
this is the complete errorJava Code:class Print { public void Print(String textString) { DocFlavor dflavor = DocFlavor.STRING.TEXT_HTML; PrintService[] services = PrintServiceLookup.lookupPrintServices( dflavor , null); PrintService defaultService = PrintServiceLookup .lookupDefaultPrintService(); PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet(); PrintService service = ServiceUI.printDialog(null, 50, 50, services, defaultService, dflavor , pras); if (service != null) { DocPrintJob job = service.createPrintJob(); DocAttributeSet das = new HashDocAttributeSet(); Doc doc = new SimpleDoc(textString, dflavor , das); try { job.print(doc, pras); } catch (PrintException pe) { } } } }
Java Code:Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: services must be non-null and non-empty at javax.print.ServiceUI.printDialog(Unknown Source) at PrintHtml.printHtml(PrintHtml.java:24)
- 08-06-2007, 06:04 PM #2
Member
- Join Date
- Jul 2007
- Posts
- 41
- Rep Power
- 0
Similar Threads
-
Exception in thread "AWT-EventQueue-0" java.lang.IllegalStateException:
By satishkumar_lskin in forum AWT / SwingReplies: 2Last Post: 12-14-2009, 01:46 AM -
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
By hemanthjava in forum AWT / SwingReplies: 3Last Post: 01-29-2008, 01:37 AM -
Exception in thread "main" java.lang.NoClassDefFoundError
By baltimore in forum New To JavaReplies: 1Last Post: 08-06-2007, 06:07 AM -
Error: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException
By romina in forum New To JavaReplies: 1Last Post: 07-25-2007, 10:55 PM -
ArrayList: Exception in thread "main" java.lang.NullPointerException
By susan in forum New To JavaReplies: 1Last Post: 07-16-2007, 06:32 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks