zoukankan      html  css  js  c++  java
  • java打印技术---javax.print

    import java.io.*;

    import javax.print.*;

    import javax.print.attribute.*;

    import javax.print.attribute.standard.*;

    public class PrintImage{

              public  PrintImage(String filename){

                           try{

                               //获得打印属性

                               PrintRequestAttributeSet  prass=new HashPrintRequestAtteributeSet();

                               prass.add(new Copies(1));

                              //获得打印设备

                               PrintService pss[]=PrintServerLookup.lookupPrintServices(DocFlavor.INPUT_STREAM.GIF,prass);

                               if(pss.length==0)

                                    throw new RuntimeException("No printer services available.");

                                PrintService ps=pss[0];

                                System.out.println("Printing to"+ps);

                                //获得打印工作

                               DocPrintJob job=ps.createPrintJob();

                               FileInputStream fin=new FileInputSTream(filename);

                              Doc doc=new SimpleDoc(fin,DocFlavor.INPUT_STREAM.GIF,null);

                              //开始打印

                             job.print(doc,prass);

                             fin.close();

                             }catch(IOException ie){

                              ie.printStackTrace();

                               }catch(PrintException pe){

                            pe.printStackTrace();

                               }

                          }

                 public static void main(String args[]) throws Exception{

                          if(args.length<1){

                                System.err.println("Usage:java PrintImage<image name>");

                               System.exit(1);

                                 }

                              new PrintImage(args[0]);

                          }

             }

                                    

  • 相关阅读:
    linux常用命令
    linux简介
    vmware+CentOs 6.9的安装步骤
    Android layer type与WebView白屏-第一次加载webview很慢
    Android View框架的measure机制
    maven的facet错误解决方法
    oracle jdbc驱动发布nexus
    dubbox2.8.4编译发布到私服(nexus)
    一致性哈希 与 普通哈希对比
    1对多业务,数据库水平切分架构一次搞定 | 架构师之路
  • 原文地址:https://www.cnblogs.com/zhouzetian/p/8567956.html
Copyright © 2011-2022 走看看