|
Or the RPrinterList class http://publib.boulder.ibm.com/iseries/v5r1/ic2924/info/rzahh/javadoc/com/ibm/as400/resource/RPrinterList.html // Create an RPrinterList object to represent a list of printers. AS400 system = new AS400("MYSYSTEM", "MYUSERID", "MYPASSWORD"); RPrinterList printerList = new RPrinterList(system); // Set the selection so that only printers which are selecting // spooled files from the listed output queues are included // in the list. printerList.setSelectionValue(RPrinterList.OUTPUT_QUEUES, new String[] { "/QSYS.LIB/MYLIB.LIB/MYOUTQ1.OUTQ1", "/QSYS.LIB/MYLIB.LIB/MYOUTQ2.OUTQ2" }); // Open the list and wait for it to complete. printerList.open(); printerList.waitForComplete(); // Read and print the device names and statuses // for the printers in the list. long numberOfPrinters = printerList.getListLength(); for(long i = 0; i < numberOfPrinters; ++i) { RPrinter printer = (RPrinter)printerList.resourceAt(i); System.out.println(printer.getAttributeValue(RPrinter.DEVICE_NAME)); System.out.println(printer.getAttributeValue(RPrinter.DEVICE_STATUS)); System.out.println(); } // Close the list. printerList.close(); Pete Helgren Kelly Cookson wrote:
There's a PrinterList class in Toolbox for Java. That sounds like the class you seek, but I've never used it so I don't have sample code to share. Check out the Javadoc at: http://publib.boulder.ibm.com/iseries/v5r1/ic2924/info/rzahh/javadoc/com/ibm/as400/access/PrinterList.html Kelly --- Rob Glasener <rglasener@xxxxxxxxxxxxxxxx> wrote:I am trying to use the following code to print on the as400 PrintService[] services =PrintServiceLookup.lookupPrintServices(null, null);System.out.println("The number of printers are: " +services.length); No matter what I put in the flavor or attributes parameters, it still returns 0. Is there an easy way to lookup up the available printers? Thanks ***************************** NOTICE: All e-mail sent to or from this e-mail address will be received or otherwise recorded by The Sharper Image corporate e-mail system and is subject to archival, monitoring, and review by and/or disclosure to Sharper Image security and other management. This message is intended only for the use of the addressee and may contain information that is privileged and confidential. The contents of this message may contain personal views which are not the views of The Sharper Image. If you are not the intended recipient, dissemination of this communication is prohibited. ***************************** -- This is the Java Programming on and around the iSeries / AS400 (JAVA400-L) mailing list To post a message email: JAVA400-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/mailman/listinfo/java400-l or email: JAVA400-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at http://archive.midrange.com/java400-l.__________________________________ Yahoo! Music Unlimited Access over 1 million songs. Try it free.http://music.yahoo.com/unlimited/
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.