문자열 : <table width="100%" align="center"/>
1. table의 width=100% OR align=center만 추출하는 경우
Document document =Jsoup.parse(htmlString);
document.select("table[width=100%],table[align=center]");
2. AND 연산(width=100%이고 align=center인 경우)
가. Elements tables = document.select("table[width=100%]").select("table[align=center]");
나. Elements element =document.select("table[align=center]");
element =element.select("table[width=100%]");
3. AND 연산(width=100%이고 align=center이고 table안에 문자열이 text인 경우)
Elements tables = document.select("table[width=100%].select("table[align=center]:contains(text)");
'자바·JSP' 카테고리의 다른 글
원리금 균등 분할 상환 계산 (0) | 2017.12.20 |
---|---|
두 IP사이의 IP 모두 출력하기 (0) | 2015.10.20 |
MyBatis / iBatis에서 조건절에 Like 검색 시 처리하는 방법 (0) | 2015.01.30 |
크롬에서 파일 다운로드시 중복헤더 수신이라 나오는 경우 (0) | 2014.10.08 |
파일 사이즈체크 (0) | 2014.04.11 |