build.gradle에 의존성 추가
implementation 'org.jsoup:jsoup:1.13.1'
url로 크롤링할 페이지 접근하기
String crawlingURL = "크롤링할 주소";
Document document = Jsoup.connect(crawlingURL).get();
원하는 정보 찾기
- getElementById
- getElementsByTag
- getElementsByClass
- getElementsByAttribute
특정 정보 text로 변환하기
String info = elements[0].select("td").text();
공식 문서에 더욱 자세한 정보가 나와있습니다.
'Springboot' 카테고리의 다른 글
Spring에서 XML 형식 응답 처리 방법 (0) | 2023.12.06 |
---|---|
[Spring, JPA] PK의 auto_increment가 범위를 벗어날 경우 (0) | 2020.05.18 |
Spring - @Valid @Requestbody Collection 유효성 검사 하는 법 (0) | 2020.03.30 |
Spring Validation Annotation 총정리 (0) | 2020.01.14 |
HTTP Method - PUT, PATCH 차이점 (0) | 2019.10.22 |
댓글