80,481
社区成员
发帖
与我相关
我的任务
分享
String url = "http://blog.csdn.net/laihuan99/article/details/9144227?reload";
long start = System.currentTimeMillis();
Document doc=null;
try{
doc = Jsoup.connect(url).get();
}
catch(Exception e){
e.printStackTrace();
}
Elements elem = doc.getElementsByTag("Title");
TextView txt=(TextView) findViewById(R.id.textView1);
txt.setText(elem.text());