SolidWorks Edrawing viewer in Java
Is there a library to load edrawings into a开发者_如何学Python JFrame?
If you are willing to limit the input files to DXF files, perhaps this will do? http://www.escape.de/~quincunx/dxfviewer/index.html
Just some thoughts:
- eDrawings is based on HOOPS3D file format. It contains a compressed xml hoops stream (open an eDrawings file in your favorite hex editor and you'll find a typical zip PK signature around offset 0x5C)
- libraries are available to view HOOPS3D files in java: HoopsJava (however I don't know about licensing constraints of it).
So a path may be to extract the XML stream and load it in HoopsJava.
精彩评论