java调用特定打印机_如何指定我想在Java中使用的打印机?

创建PrintUtility类下面,将其导入并尝试调用PrintUtility.findPrintService("name_of_my_printer");,如果你知道你的打印机名称;如果你不知道什么打印机,您可以访问,请致电PrintUtility.getPrinterServiceNameList();包含所有可行登记的打印机名称的List。

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 getPrinterServiceNameList() {

// get list of all print services

PrintService[] services = PrinterJob.lookupPrintServices();

List list = new ArrayList();

for (int i = 0; i < services.length; i++) {

list.add(services[i].getName());

}

return list;

}

/**

* Utility class; no construction!

*/

private PrintUtility() {}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值