如何从 Java 打印 DWG 文件
如何从 Java 打印 .dwg 文件?
是否有 API 用于访问 DWG AutoCAD 文件并将其传递到打印机进行打印?
How do I print a .dwg file from Java?
Is there is an API for accessing and passing the DWG AutoCAD file to the printer for printing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Dwglib 是一个用于访问 DWG 文件的 Java 库。它本质上是 Art Haas 的 Pythoncad DWG 阅读课程的移植。 jdwglib 管理复杂的 DWG 对象,允许用户直接在其应用程序中使用这些对象。
Dwglib is a Java library for accesing DWG files. It is essentially a port from the Pythoncad DWG reading classes by Art Haas. jdwglib manages complex DWG objects allowing users to employ these objects directly in their applications.
您将找到一个允许您读取 AutoCAD dwg 文件的 API。我还没有看到任何 Java 版本,但您也许可以从以下 .NET 版本开始:
http://code.google.com/p/tf-net/wiki/DwgReaderWriter
一旦找到 API,那么它可能就像打印您渲染的任何内容一样简单。
You'll to find an API that allows you to read an AutoCAD dwg file. I haven't seen any Java ones, but you might be able to start from the .NET one following:
http://code.google.com/p/tf-net/wiki/DwgReaderWriter
Once you've found an API, then it might be as simple as printing whatever you render.