4

現在、マシンにインストールされているデフォルトのプリンターを取得して印刷しています。ドキュメントがどのプリンターに送られるかを選択できるようにしたい。これを行う最良の方法は何ですか?

コード:

 PrintService[] services =
                PrintServiceLookup.lookupPrintServices(psInFormat, null);
        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());
        }
4

3 に答える 3

9

このPrintServiceLookup.lookupPrintService()メソッドは、プリンターを名前で検索する方法を提供します。属性オブジェクトをHashAttributeSet持つ を準備し、それを lookup メソッドに渡します。PrinterName

以下のようなコードを使用します。

AttributeSet aset = new HashAttributeSet();
aset.add(new PrinterName("MyPrinter", null));
PrintService[] pservices = 
    PrintServiceLookup.lookupPrintServices(null, aset);

Linux で CUPS を使用して動作します。

于 2015-10-07T13:28:11.870 に答える
5

以下のクラスを作成しPrintUtility、インポートしてPrintUtility.findPrintService("name_of_my_printer");、プリンタ名がわかっている場合は呼び出してみてください。アクセスできるプリンタがわからない場合は、実行可能なすべての登録済みプリンタ名を含むを 要求PrintUtility.getPrinterServiceNameList();してください。List

または、詳細については、このSOの質問に対する私の回答を参照してください。

package com.stackoverflow.print;

import java.awt.print.PrinterJob;
import javax.print.PrintService;
import java.util.List;
import java.util.ArrayList;

public final class PrintUtility {

    /**
     * Retrieve a Print Service with a name containing the specified PrinterName; will return null if not found.
     * 
     * @return
     */
    public static PrintService findPrintService(String printerName) {

        printerName = printerName.toLowerCase();

        PrintService service = null;

        // Get array of all print services
        PrintService[] services = PrinterJob.lookupPrintServices();

        // Retrieve a print service from the array
        for (int index = 0; service == null && index < services.length; index++) {

            if (services[index].getName().toLowerCase().indexOf(printerName) >= 0) {
                service = services[index];
            }
        }

        // Return the print service
        return service;
    }

    /**
     * Retrieves a List of Printer Service Names.
     * 
     * @return List
     */
    public static List<String> getPrinterServiceNameList() {

        // get list of all print services
        PrintService[] services = PrinterJob.lookupPrintServices();
        List<String> list = new ArrayList<String>();

        for (int i = 0; i < services.length; i++) {
            list.add(services[i].getName());
        }

        return list;
    }

    /**
     * Utility class; no construction!
     */
     private PrintUtility() {}
}
于 2013-02-14T23:50:01.020 に答える
-1
int i ;

DocFlavor fl= null;

PrintService printService[]= PrintServiceLookup.lookupPrintServices(fl,null); 

for(i=0;i<printService.length;i++)
{
    System.out.println(printService[i]);

}
于 2018-01-10T09:38:29.037 に答える