2

我知道如何获取可用打印机的列表,我希望用户能够从列表中进行选择并将其设置为会话的默认值

使用 Windows 7

我知道这很容易做到我只想创建一个简单的java程序a:增加我的知识b:这里的老师非常不喜欢玩打印属性

提前感谢您的帮助

4

3 回答 3

2

您知道如何获取所有打印机的列表,然后您想设置默认打印机。

好的,此代码将帮助您将要设置为默认打印机的打印机名称传递给“MYPRINTER”。将其替换为打印机名称。

PrinterJob pj = PrinterJob.getPrinterJob();
    PrintService[] printServices = PrintServiceLookup.lookupPrintServices(null, null);
    System.out.println("Number of printers configured: " + printServices.length);
    for (PrintService printer : printServices) {
        System.out.println("Printer: " + printer.getName());
        if (printer.getName().equals("***MYPRINTER***")) {
            try {
                pj.setPrintService(printer);
            } catch (PrinterException ex) {
            }
        }
    }

于 2015-01-09T05:24:18.693 回答
1

该程序在 Eclipse 中运行。

import java.awt.print.PageFormat;

import java.awt.print.PrinterJob;

public class PrinterSetup 
{

    public static void main(String[] args) throws Exception
    {
        PrinterJob pjob = PrinterJob.getPrinterJob();
        PageFormat pf = pjob.defaultPage();
        pjob.setPrintable(null, pf);

        if (pjob.printDialog()) {
          pjob.print();
        }
    }
}
于 2012-08-03T00:49:26.460 回答
1

我做了一个解决方法来设置操作系统默认打印机。这个适用于windows,它基本上执行一个cmd命令,在执行打印代码之前设置默认打印机:

Desktop desktop = null
if (Desktop.isDesktopSupported()) {
desktop = Desktop.getDesktop()
    desktop.print(file)
 }

这是我的功能:

public static boolean setDefaultPrinter(String printerName) {
    String defaultPrinterSetter = "wmic printer where name='"+ printerName +"' call setdefaultprinter";
    try {
        setDefaultPrinterProcess = Runtime.getRuntime().exec("cmd /c start cmd.exe /C " + defaultPrinterSetter);
        return true;
    } catch (Exception e) {
        e.printStackTrace();
        return false;
    }
}

您需要做的就是将打印机名称传递给此函数,它将使其成为默认打印机。

这是一个获取所有可用打印机服务列表的函数:

public static ArrayList<PrintService> availablePrinters() {
    PrintService[] services = PrinterJob.lookupPrintServices();
    ArrayList<PrintService> allServices = new ArrayList<>();

    for (PrintService myService : services) {
        allServices.add(myService);
    }
    return allServices;
}

而且我假设您想在组合框中添加一个列表或供用户选择的东西。它应该是这样的

    ArrayList<PrintService> availableServices = availablePrinters();
    System.out.println("All printers list:");
    for (PrintService myService : availableServices) {
        myCombo.getItems().add(myService.getName());
        System.out.println(myService.getName());
    }
于 2019-10-08T18:47:35.547 回答