xml parsing - how to extract text from a html website in android -


i want develop android application takes particular input app , gives website, website fetches result. want display result website , display in android app. tried using xml parsing website not xml based website. website http://www.fastvturesults.com/ , input roll number(usn number). can guide me on how fecth result site , parse app.

use jsoup extracts datas website , display result.

   document document = jsoup.connect(url).get();             // html document title             string title = document.title(); //get title     elements description = document                     .select("meta[name=description]");             // locate content attribute             string desc = description.attr("content"); 

and on.


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -