(Android) jsoup 파싱 사용 예제 사이트 모음
뽑아오는 방법
출처 :
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