1

私はJavaで印刷プログラムを持っていますが、何らかの理由で、プリンターにたとえばxpsの値を渡した場合でも、常にデフォルトのプリンター(8600)が選択されます。何が間違っているのでしょうか。また、必要なプリンターを選択するにはどうすればよいですか。プリンター

ここに私のコードがあります:

 PrintService[] printServices = PrintServiceLookup.lookupPrintServices(null, null);
        System.out.println("Number of print services: " + printServices.length); //tells me how many print services are isntalled on the server.

        for (PrintService printer2 : printServices) {
            System.out.println("Printer: " + printer2.getName()); //prints out the names of all printers on the server, testing purposes 
        } 


        PrintUtility.findPrintService(printer); // selects only the 8600 printer // EDIT now selects any printer with the name provided


        PrintService[] services =
                PrintServiceLookup.lookupPrintServices(psInFormat, null);
        //System.out.println("Printers avialiable are " + services);
        System.out.println("Printer Selected " + services[Printerinx]);

        //PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService();

        DocFlavor[] docFalvor = services[Printerinx].getSupportedDocFlavors();
        for (int i = 0; i < docFalvor.length; i++) {
            System.out.println(docFalvor[i].getMimeType());
        }
        if (services.length > 0) {
            DocPrintJob job = services[Printerinx].createPrintJob();
            try {
                job.print(myDoc, aset);
                System.out.print("Printing Doc");
            } catch (PrintException pe) {
                System.out.print(pe);
            }
        }

これはコンソールです:

INFO: Number of print services: 7
INFO: Printer: Send To OneNote 2013
INFO: Printer: Microsoft XPS Document Writer
INFO: Printer: HP988FD1 (HP Officejet Pro 8600)
INFO: Printer: HP Officejet Pro 8600 (Network)
INFO: Printer: Fax - HP Officejet Pro 8600 (Network)
INFO: Printer: Fax
INFO: Printer: Adobe PDF
INFO: Printer Selected Win32 Printer : HP Officejet Pro 8600 (Network)
INFO: image/gif

ありがとう

4

1 に答える 1

1

解決しました。printerinx、使用できるプリンタを選択しました。最初のプリンタは0などです。これをprintinx = "3"に設定したので、常に4番目のプリンタが選択されていました。これは削除され、各プリンタに正しいprintinxで、正常に動作するようになりました

于 2013-03-07T17:07:40.343 に答える