Ascii 将文件打印为 PDF
如何将 ascii 打印文件(带有换行符和换页 ctrl 字符的文本文件)转换为 PDF 文档,并使用预先打印的信纸作为模板或背景图像。在 Java 中如何做到这一点。
How to convert an ascii print file ( text file with line feed and form feed ctrl characters) into a PDF Document with the pre printed stationery as template or background image. How can this be done in Java.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下两种方式之一创建 PDF:
这样你就可以得到 PDF 了。您可以通过在 Adobe Reader 中打开它并从那里打印或使用 Java 打印 API 将其发送到打印机来打印它。
You can create a PDF using either one of two ways:
That gets you the PDF. You can print it by either opening it in Adobe Reader and printing from there OR by sending it to a printer using the Java print API.