java怎么选择打印机_如何指定要在Java中使用的打印机?

在下面创建PrintUtility类,导入它并尝试调用PrintUtility.findPrintService(“name_of_my_printer”);如果你知道你的打印机名称;如果您不知道有权访问哪些打印机,请调用PrintUtility.getPrinterServiceNameList();对于包含所有可行的注册打印机名称的列表.

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

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值