Server-side network printing in java / grails(java/grails中的服务器端网络打印)
问题描述
我是 java/grails 开发人员,致力于重新设计软件系统.
I am java / grails developer working on redesigning a software system.
其中一个要求是让服务器端应用程序将数据发送到各种网络打印机以打印文本数据.
One of the requirements is to have a sever-side application send data to various network printers to print text data.
我在网上搜索了有关 java 网络打印的信息,结果很短我查看了 Java Print Service API、java.awt.print、javax.print 并没有发现任何关于连接到网络打印机的信息.
I searched the web for info on java network printing, and came up short I looked into Java Print Service API, java.awt.print, javax.print and did not find anything on connecting to network printers.
我正在尝试做的事情是可能的还是有利的.由于缺乏调查结果,我相信服务器端软件不会直接与网络打印机交互.
Is what I am trying to do possible or favorable. The lack of findings leads me to believe that sever-side software does not interact with network printers directly.
如果可以的话,请指点我一些资源.
If it can be done, please point me to some resources.
推荐答案
网络打印机的处理方式通常与本地连接的打印机没有区别;它们首先在操作系统中设置,这使得它们可用于 Java 打印服务.
Network printers are typically treated no differently from locally connected printers; they are set up in the OS first and this makes them available to the Java Print Service.
如果您需要直接打印到 POS 打印机,它们通常有自己的二进制协议,您可以通过 TCP/UDP 使用该协议.例如,爱普生有 ESC/POS 系统.
If you need to print directly to a POS printer, they usually have their own binary protocol that you can use over TCP/UDP. Epson has the ESC/POS system, for example.
根据打印服务器的不同,您可以通过 CUPS/LRP/LPD/IPP 将 PostScript 直接发送到打印机.请参阅 http://www.cups4j.org 和 http://lpdspooler.sourceforge.net.
Depending on the print server, you may be able to send PostScript straight to the printer via CUPS/LRP/LPD/IPP. See http://www.cups4j.org and http://lpdspooler.sourceforge.net.
这篇关于java/grails中的服务器端网络打印的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:java/grails中的服务器端网络打印
基础教程推荐
- 降序排序:Java Map 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01