我知道如何获取可用打印机的列表,我希望用户能够从列表中进行选择并将其设置为会话的默认值
使用 Windows 7
我知道这很容易做到我只想创建一个简单的java程序a:增加我的知识b:这里的老师非常不喜欢玩打印属性
提前感谢您的帮助
您知道如何获取所有打印机的列表,然后您想设置默认打印机。
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) {
}
}
}
该程序在 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();
}
}
}
我做了一个解决方法来设置操作系统默认打印机。这个适用于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());
}