用java生成AutoCAD文件?
有谁知道如何使用 Java 生成 AutoCAD 绘图吗? dfx 是一个好的界面还是我们应该使用 dwg 文件?
我在网上找不到任何关于此的有用信息。开放设计联盟有用于生成 dwg 的库,但如果不成为会员,我就无法查看 API。而且他们似乎也没有java接口。
Does anyone have any tips how I can generate AutoCAD drawings with Java? Is dfx a good interface or should we go for dwg files?
I can't find any useful information on this on the net. The Open Design Alliance have libraries for generating dwg, but I can't look at the API without becoming a member. And they don't seem to have a java interface either.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不必生成 dwg,并且可以在 dxf 中表示您想要的内容,那么我建议使用 dxf。从 java 手动编写 dxf 相当容易,不需要昂贵的库。
与 AutoCad 的原生应用程序格式 dwg 不同,DXF 是一种交换格式,因此 Autodesk 鼓励您使用它。他们在这里发布规格。
http://usa.autodesk.com/adsk/servlet/item?siteID=123112&id=12272454&linkID=10809853
If you don't have to generate dwg, and you can represent what you want in dxf then I suggest going with dxf. It is fairly easy to write dxf manually from java without the need for an expensive library.
Unlike dwg which is the native application format of AutoCad, DXF is an interchange format, and as such Autodesk encourages you to use it. They publish the specifications here.
http://usa.autodesk.com/adsk/servlet/item?siteID=123112&id=12272454&linkID=10809853