Is there any API in Java to access wikipedia data

前端 未结 5 1325
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-08 20:17

I want to know: is there any API or a query interface through which I can access Wikipedia data?

5条回答
  •  长情又很酷
    2020-12-08 20:36

    You can use Jwiki to get Wikipedia data (Disclosure: I'm the author of this software) Example :

    Jwiki jwiki = new Jwiki("elon musk");
    System.out.println("Title :"+jwiki.getDisplayTitle()); //get title
    System.out.println("Text : "+jwiki.getExtractText());  //get summary text
    System.out.println("Image : "+jwiki.getImageURL());    //get image URL
    

提交回复
热议问题