使用Jsoup怎样解析本地的html文件

2024-11-06 14:41:47
推荐回答(1个)
回答1:

代码如下:
File in = new File("/local/in.html");
Document doc = Jsoup.parse(in, "UTF-8", "");