I am trying to write/find some code in Java which reads dxf files and stores geometry from the "Entities" section into arrays so that I can later import that information into Oracle 11g in terms of tables.
Thank you in advance!
|
|
|
For some feedback of general interest read Reading .DXF files There's a number of Java libraries that implement a DXF reader/writer like kabeja (Open Source) and de-caff (a free viewer, the libraries it's based on are available commercially). A word of warning: DXF is way more complicated than it looks at first sight, so if you select a solution test it thoroughly on your data. |
|||
|
|
|
I've used kabeja recently and haven“t had any problems, though I did quite simple tasks. If you just want to bring those geometries into an array it will do the job (in other cases I can't tell). If you already know the DXF format you will have no problems to get started. It can get as easy as follows (e.g. to extract some circle entities):
The documentation is a bit incomplete, but it has decent javadocs and clean api. |
|||