I have worked on JAXB parsing with a simple XML file, but with my new project I have an XBRL file which is used for business record and that needs to parse. Is there any parsing technique for XBRL files? Any help would be appreciated!
Asked
Active
Viewed 515 times
2 Answers
1
XBRL is more than just an XML file. See my explanation in https://stackoverflow.com/a/38395549/2124628. Basically, it's a very large exercise to write an XBRL parser: You'd need to start with a parsing the XSD, Xlink and linkbase resources before you can even start parsing an XBRL file.
As I recommended in the other post: try leveraging an existing product, it's probably worth the investment.
-
Any further updates to this? Any open source parsers? Thx – user3437721 Jul 05 '18 at 19:32