뽑아오는 방법
출처 :
http://edoli.tistory.com/95 : 설명
>>> https://jsoup.org/cookbook/extracting-data/selector-syntax
http://webnautes.tistory.com/784
===========
웹뷰와 텍스트 뷰를 이용해서 html 소스코드를 넣을 수 있는 방법
http://mainia.tistory.com/659
텍스트 뷰의 경우 tr td 구현이 제대로 안되기 때문에 웹뷰로 하는 것을 추천.
============
주소 뽑기
출처 :
http://blog.acronym.co.kr/337
http://sehoonkim.tistory.com/158
===============
select("div #bbsText") ==> x
select("div[id=bbsText]"); 이렇게 뽑음
===================
jsoup input type hidden value 값 가져오기
출처 :
http://stackoverflow.com/questions/13071165/read-input-hidden-tag-value-from-url-of-website-using-jsoup-in-java
hidden 값 뽑기
link.select("input[type=hidden]").attr("value")
===========
(화이트리스트) 부분 제거하기
출처 :
http://stackoverflow.com/questions/19784051/how-to-remove-all-inline-styles-and-other-attributes-from-html-elements-using-js
Jsoup.clean(html, wl);
whitelist 란??
출처 :
https://jsoup.org/apidocs/org/jsoup/safety/Whitelist.html#simpleText--
============
출처 : http://rhkdvy1200.tistory.com/entry/Jsoup%EB%A1%9C-%ED%8C%8C%EC%8B%B1%ED%95%98%EA%B8%B0
'Android Studio' 카테고리의 다른 글
(Android Studio) 웹뷰 확대 축소 기능 (0) | 2016.12.26 |
---|---|
(Android Studio) 안드로이드 웹뷰 글자 깨짐 방지하기 (0) | 2016.12.26 |
(Android Studio)안드로이드(Android) 에서 TextView 와 WebView 를 이용해 Html 표현하기 (0) | 2016.12.26 |
(Android Studio) WebView에 로드된 페이지 HTML 소스 가져오는 방법 및 예제 (0) | 2016.12.26 |
(Android Studio) 버튼 동적 생성2 (0) | 2016.12.26 |