up vote 0 down vote favorite
share [g+] share [fb]

Looking for API that helps me with processing of taxonomies. It should be possible to work with taxonomy in object model (loading from xml file), list categories, traverse tree of categories (if it's tree taxonomy), getting name and value for category, etc. Read only mode is sufficient. Google hasn't helped a lot :(

Usage can be as follows:

Taxonomy taxonomy = Taxonomy.loadFromStream(XMLInputStream);

List categories = taxonomy.listAllCategories();

Category rootCategory = taxonomy.getRootCategory();

What's important about it is that I don't want to handle XML directly. It's useless. If there will be some YAML adapter, taxonomy can be in YAML format and my code stays unaffected...

link|improve this question

That's a very general problem... – skaffman Aug 17 '09 at 13:37
Yes, it is. I'm wondering that there isn't any free library for this. Or at least I haven't found it :) – Supowski Aug 17 '09 at 13:48
feedback

3 Answers

up vote 2 down vote accepted

I don't think that you will ever find an XML based library for taxonomy: it is too specific.

However you can implement taxonomy model yourself on top of a library like XStream of JAXB in order to serialize to XML without writing verbose XML manipulation code.

link|improve this answer
It's not exactly the solution I've been looking for, but I think it's the best possible one.. – Supowski Feb 15 '11 at 10:30
feedback

From my recent development, I've got to say I'm impressed with the Flex development environment (there are a lot of online resources about getting started with it). I know it's not really Java because it's similar to Flash, but it's based on ActionScript which is similar to Java. In addition, Flex and has the ability to communicate with external JavaScript resources, and is really intuitive for processing of XML resources.

In Java, I have used the standard DOM parsers that come with Java SDK (which I believe are based on the Xerces parser), but they were a hassle to use to say the least.

link|improve this answer
feedback

I think JDom may help you. Look at Jdom at Wikipedia , JDom javadoc

link|improve this answer
I don't want to handle XML directly... – Supowski Aug 17 '09 at 13:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.