fis = new FileInputStream(file);
DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE; // FILE IS .txt TYPE
PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
//pras.add(MediaSizeName.ISO_A4);
//pras.add(new Copies(1));
PrintService printService[] =PrintServiceLookup.lookupPrintServices(flavor, pras);
System.out.println("Print Service:"+printService);
PrintService defaultService =PrintServiceLookup.lookupDefaultPrintService();
System.out.println("Default Service:"+defaultService);
PrintService service = ServiceUI.printDialog(null, 200, 200,printService, defaultService, flavor, pras);
if (service != null)
{
System.out.println("Selected Service"+service);
DocPrintJob job = service.createPrintJob();
job.addPrintJobListener(new MyPrintJobListener());
System.out.println("JOB:"+job);
DocAttributeSet das = new HashDocAttributeSet();
Doc doc = new SimpleDoc(fis, flavor, das);
System.out.println("Start of Print");
job.print(doc, pras);
System.out.println("End of Print");
i=1;
}
else
{
i=0;
}
我正在开发一个 web 应用程序,用户希望打印保存在文件中的数据,该文件包含根据他的查询来自数据库的详细信息。我将上面的代码放在一个方法中,当它被调用时,它会打印用户对话框,他可以从连接到他的机器的打印机列表中选择打印机。如果我尝试打印到本地打印机,文件将被发送到 C:\WINDOWS\system32\spool 文件夹并进行打印。但在网络打印机的情况下不会发生我网络上的打印机是佳能 MP280 系列打印机我能够在打印机列表中看到它,但无法打印我的文件