try{
Connection.Response response = Jsoup.connect("http://http://tip.daum.net/question/84887348")
.method(Connection.Method.GET)
.execute();
Document test = response.parse();
Element e = test.select("div.txt_collect ").first();
String check = e.attr("value");

textView.setText(check);


} catch (IOException e){
e.printStackTrace();
}

 

뭐가 문젤까 ㅠ? 열심히 찾아보고 하는데 잘안되네..