Cần giúp đỡ về Scraper

câu hỏi: lọc các tin tức trên web mà thầy đưa.
(thầy đưa là ile html)
và có code là như vậy.
thầy bảo thêm code vào. vậy cho mình hỏi cách làm như thế nào.

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.Writer;

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;

public class main {

	public static void main(String[] args) throws Exception
	{
		String content ="";
		BufferedReader br = new BufferedReader(new FileReader("vnexpress.html"));
		String line;
		while((line = br.readLine())!=null)
		{
			content +=line;
		}
		Document doc = Jsoup.parse(content);
		Elements page_news = doc.getElementsByClass("list_news");
		for(Element list_news: page_news)
		{
			Elements news = list_news.children();
			for(Element li:news)
			{
				Element h3 = li.getElementsByClass("title_news").first();
				Element a =  h3.getElementsByTag("a").first();
				String title = a.text();
				Element news_lead = li.getElementsByClass("news_lead").first();
				
				String new_content = news_lead.text();
			}
		}
	}

}

có ai giúp mình bài này được k

bạn có thể tham khảo trang này nè https://jsoup.org/cookbook/

Bạn có thể tham khảo trang này: http://novidevelop.github.io/

Nè, bạn phải để ý ngày tháng người ta đặt câu hỏi chứ. Cái này gọi là “đào mồ”, cách mà các thành viên diễn đàn thường hay trêu cười những bợm không chú ý về ngày tháng của các bài đăng trên một luồng thảo luận. Câu hỏi kia cách đây 8 năm rồi đó bạn.

83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?