java - Fetching data from the other sites and displaying into our page.? -
is ther way data other sites , display in our jsp pages dynamically.
http://www.dictionary30.com/meaning/misty see url in 1 block wikipedia meaning , definition on 'misty'
in block fetching data wikipedia , displaying dictionaly30. question: how fetching wiki data site.? need display data in jsp page fetching other site.
you can use urlconnection
, read other site's data.
or better use jsoup parse specific data other site.
for case
document document = jsoup.parse(new url("http://www.dictionary30.com/meaning/misty"), 10000); element div = document.select("div[id=contentbox]").first(); system.out.println(div.html());
Comments
Post a Comment