I am developing an android project.i want to access some portion of a webpage but how can i do so? which parser suits the best for this task and also how to use this parser. i use the following method to access the webpage but now want to parse this page
public void call_a_site()
{
try
{
Uri uri = Uri.parse( "http://www.dsebd.org/" );
startActivity(new Intent(Intent.ACTION_VIEW,uri));
}
catch(Exception e)
{
}
}
plz help.. thanks