在Java中强制目标打印机

前端之家收集整理的这篇文章主要介绍了在Java中强制目标打印机前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法强制目标打印机在 java中,使用HashPrintRequestAttributeSet?

我不希望用户能够更改printdialog中的打印机

谢谢

解决方法

不得不认真思考这个问题,但对于后代来说,这里有一些
码:
PrintService[] printServices;
PrintService printService;
PageFormat pageFormat;

String printerName = "Your printer name in Devices and Printers";

PrintServiceAttributeSet printServiceAttributeSet = new HashPrintServiceAttributeSet();
printServiceAttributeSet.add(new PrinterName(printerName,null));
printServices = PrintServiceLookup.lookupPrintServices(null,printServiceAttributeSet);

pageFormat = new PageFormat(); // If you want to adjust heigh and width etc. of your paper.
pageFormat = printerjob.defaultPage();

PrinterJob printerjob = PrinterJob.getPrinterJob();

printerjob.setPrintable(new Server(),pageFormat); // Server was my class's name,you use yours.

try {
    printService = printServices[0];
    printerjob.setPrintService(printService); // Try setting the printer you want
} catch (ArrayIndexOutOfBoundsException e) {
    System.err.println("Error: No printer named '" + printerName + "',using default printer.");
    pageFormat = printerjob.defaultPage(); // Set the default printer instead.
} catch (PrinterException exception) {
    System.err.println("Printing error: " + exception);
}

try {
    printerjob.print(); // Actual print command
} catch (PrinterException exception) {
    System.err.println("Printing error: " + exception);
}
原文链接:https://www.f2er.com/java/122323.html

猜你在找的Java相关文章