Java Applet 可以使用打印机吗?
Java Applet 能否轻松地将文本/html 打印到标准打印机驱动程序(适用于所有常见平台 Win/Mac/Linux)?
需要签字吗?
Can a Java Applet able to print out text/html easily to standard printer driver(s) (with all common platforms Win/Mac/Linux)?
Does it need to be signed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要打印,您需要使用签名小程序,或者如果未签名的小程序尝试打印时,会提示用户询问是否允许权限。
以下是使用 JEditorPane 打印 HTML 的一些示例代码:
然后将其发送到打印机:
To print you will either need to use Signed Applets or if an unsigned applet tries to print, the user will be prompted to ask whether to allow permission.
Here is some sample code for printing HTML using JEditorPane:
Then to send it to printer:
为了进行打印,安全管理器需要允许其访问打印机。 这意味着要么对小程序进行签名,要么至少使用 Sun 的 Java 插件的最新版本,如果未签名的小程序尝试打印,系统将提示用户询问是否允许允许。
In order to print, the security manager needs to allow it to access the printer. This means either signing the applet or, at least with recent versions of Sun's Java plugin, if an unsigned applet tries to print, the user will be prompted to ask whether to allow permission.