vote up 0 vote down star

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...

flag

60% accept rate
That's a very general problem... – skaffman Aug 17 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 at 13:48

3 Answers

vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
I don't want to handle XML directly... – Supowski Aug 17 at 13:54
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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