Seeking for help in order to make a definitive decision. For some months, I'm looking for a Java API which helps me to access Wikipedia and get the content of articles. My project is to build a taxonomy of concepts of a given domain. Details:
- I have a corpus of domain texts, I extract the first set of terms (that represents the domain).
- I search in Wikipedia the articles of these words in order to extract their definitions. The definition of the word helps me to find the hyperonym of this word. The call for Wikipedia will surely be done in a java loop.
- I search the definitions of the hyperonyms found in the previous step to find their hyperonyms, and so on.
- I draw a graph linking the words to their hyperonyms.
My problem is that for the step 2, I cannot make a definitive decision.
- I wrote Java code to access Wikipedia online. It succeeds but the speed of my connexion determines if the execusion succeeds or fails giving a set of exceptions. Sometimes, the execution gives me only 2 or 3 articles.
- I tryed to use JWPL to treat Wikipedia dumps. I failed because I have not enough RAM.
- I'm now hesitating between a set of Java APIs.
Please give me your points of views if you have already done something in this sense. I made a serious investigation and I found the following links:
- http://wdm.cs.waikato.ac.nz:8080/wiki/Wiki.jsp?page=Installing%20the%20Java%20API
- http://jwikiapi.sourceforge.net/index.html
- http://code.google.com/p/gwtwiki/
- http://www.mediawiki.org/wiki/API%3aMain_page
- http://jwbf.sourceforge.net/
I'd appreciate any suggestions.