开发工具:
文件大小: 78kb
下载次数: 0
上传时间: 2011-10-24
详细说明: package com.lenovo.union.printreceipt.test; import java.awt.*; import java.awt.print.*; public class Test implements Printable { private static Font fnt = new Font("Helvetica", Font.PLAIN, 24); public static void main(String[] args) { // Get a PrinterJob PrinterJob job = PrinterJob.getPrinterJob(); // Specify the Printable is an instance of SimplePrint job.setPrintable(new Test()); // Put up the dialog box if (job.printDialog()) { // Print the job if the user didn't cancel print ing try { job.print(); } catch (Exception e) { /* handle exception */} } System.exit(0); } public int print(Graphics g, PageFormat pf, int pageIndex) throws PrinterException { // pageIndex 0 to 4 corresponds to page numbers 1 to 5. if (pageIndex >= 1) { return Printable.NO_SUCH_PAGE; } g.setFont(fnt); g.setColor(Color.green); g.drawString("Page " + (pageIndex + 1), 100, 100); g.drawRect(200, 200, 400, 300); return Printable.PAGE_EXISTS; } } ...展开收缩
(系统自动生成,下载前可以参看下载内容)
下载文件列表
相关说明
- 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
- 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。
- 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
- 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
- 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
- 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.