中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JAVA如何實現連接本地打印機并打印文件

發布時間:2021-09-27 09:49:35 來源:億速云 閱讀:178 作者:小新 欄目:編程語言

小編給大家分享一下JAVA如何實現連接本地打印機并打印文件,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

實現代碼一

import javax.print.*;import javax.print.attribute.DocAttributeSet;import javax.print.attribute.HashDocAttributeSet;import javax.print.attribute.HashPrintRequestAttributeSet;import javax.print.attribute.PrintRequestAttributeSet;import java.io.File;import java.io.FileInputStream;public class PrintDemo1 {  public void printPdf(String fileName) {    //構造一個文件選擇器,默認為當前目錄    File file = new File(fileName);//獲取選擇的文件    //構建打印請求屬性集    PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();    //設置打印格式,因為未確定文件類型,這里選擇AUTOSENSE    DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;    //查找所有的可用打印服務    PrintService printService[] = PrintServiceLookup.lookupPrintServices(flavor, pras);    //定位默認的打印服務    //PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService();    // 顯示打印對話框    PrintService service = ServiceUI.printDialog(null, 200, 200, printService, defaultService, flavor, pras);    if (service != null) {      try {        DocPrintJob job = service.createPrintJob(); // 創建打印作業        FileInputStream fis; // 構造待打印的文件流        fis = new FileInputStream(file);        DocAttributeSet das = new HashDocAttributeSet();        Doc doc = new SimpleDoc(fis, flavor, das);        job.print(doc, pras);      } catch (Exception e) {        e.printStackTrace();      }    }  }  public static void main(String args[]) {    PrintDemo1 pic = new PrintDemo1();    pic.printPdf("F:\\java資源2\\Docker視頻教程\\贈送3-從Docker到Kubernetes之技術實戰\1.為什么你需要學習Docker\1.pdf");  }}

代碼二

package com.iba.cxx.adm.controller;import javax.print.*;import javax.print.attribute.DocAttributeSet;import javax.print.attribute.HashDocAttributeSet;import javax.print.attribute.HashPrintRequestAttributeSet;import javax.swing.*;import java.io.File;import java.io.FileInputStream;/** * Created by Administrator on 2017/9/8 0008. */public class TestController {  public static void main(String[] args) {    JFileChooser fileChooser = new JFileChooser(); //創建打印作業    int state = fileChooser.showOpenDialog(null);    if(state == fileChooser.APPROVE_OPTION){      // File file = new File("D:/haha.txt"); //獲取選擇的文件      File file = fileChooser.getSelectedFile();//獲取選擇的文件      //構建打印請求屬性集      HashPrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();      //設置打印格式,因為未確定類型,所以選擇autosense      DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;      //查找所有的可用的打印服務      PrintService printService[] = PrintServiceLookup.lookupPrintServices(flavor, pras);      //定位默認的打印服務      PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService();      //顯示打印對話框      PrintService service = ServiceUI.printDialog(null, 200, 200, printService,          defaultService, flavor, pras);      if(service != null){        try {          DocPrintJob job = service.createPrintJob(); //創建打印作業          FileInputStream fis = new FileInputStream(file); //構造待打印的文件流          DocAttributeSet das = new HashDocAttributeSet();          Doc doc = new SimpleDoc(fis, flavor, das);          job.print(doc, pras);        } catch (Exception e) {          e.printStackTrace();        }      }    }  }}

以上是“JAVA如何實現連接本地打印機并打印文件”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

余江县| 图们市| 青州市| 皮山县| 金沙县| 宁武县| 个旧市| 来安县| 巨鹿县| 望谟县| 北票市| 澄江县| 景德镇市| 衡南县| 晴隆县| 襄城县| 高平市| 静乐县| 方城县| 和龙市| 泸州市| 治多县| 库尔勒市| 福安市| 平顶山市| 鄯善县| 呼伦贝尔市| 普兰店市| 繁昌县| 奉化市| 砀山县| 涿鹿县| 密云县| 敖汉旗| 新河县| 四平市| 临城县| 客服| 通道| 紫金县| 乳山市|