I'm writing some Java code in order to realize NLP tasks upon texts using Wikipedia. How can I use JSoup to extract the first paragraph of a Wikipedia article?
Thanks a lot.
|
I'm writing some Java code in order to realize NLP tasks upon texts using Wikipedia. How can I use JSoup to extract the first paragraph of a Wikipedia article? Thanks a lot.
| ||||
|
feedback
|
|
It is very simple, and the process is quite similar for every semi-structured page from which you are extracting information. First, you have to uniquely identify the DOM element where the required information lies in. The easiest way to do this is to use a web development tool, such as Firebug in Firefox, or the ones that come bundled with IE (> 6, I think) and Chrome. Using the article Potato as an example, you will find that the
In other words, you want to find the first Then, you just need to select that element with jsoup, using its selector syntax for example (which is very similar to jQuery's):
| |||
feedback
|
|
It seems like the first paragraph is also the first
Now you can get the content of this element | |||||
feedback
|