jsoup 이 뭐 예요?jsoup 사용법
7717 단어 자바
jsoup 는 자바 의 HTML 해상도 기 입 니 다.이것 은 당신 이 제공 한 URL 주소 에 따라 HTML 의 텍스트 내용 을 분석 할 수 있 습 니 다.
용법
maven 의존 가입
org.jsoup
jsoup
1.10.2
:
\\
@SuppressWarnings("all")
public class JsoupTest {
\\ txt
@Test
public void writeTest() throws Exception{
\\ URL
Document document= Jsoup.connect("https://news.163.com/19/0921/15/EPJVQ1S4000189FH.html").get();
\\ HTML
String title = document.title();
\\ HTML id ( :endText)
String content = document.getElementById("endText").text();
\\
File file = new File("D:\\jsoup\\0921\\"+title.replaceAll("[: ]", "_")+".txt");
BufferedWriter bw = new BufferedWriter(new FileWriter(file));
\\
bw.write(content);
bw.close();
System.out.println(" ");
}
\\ txt
@Test
public void readerTest() throws Exception{
\\ txt
File file = new File("D:\\jsoup\\0921");
\\ file
File[] files = file.listFiles();
\\
for (File file2 : files) {
BufferedReader br = new BufferedReader(new FileReader(file2));
\\
String title = file2.getName().split("\\.")[0];
\\
String content = br.readLine();
System.out.println(title);
System.out.println(content);
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.