jar包
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.13.1</version>
</dependency>
解析方法
private String parseOriginUrl(String tzurl) {
if (StrUtil.isEmpty(tzurl)) {
return "";
}
//<a href=\"/Portal/Read?BizCode=SampleCollect&BizObjectID=7c07b74" >下载</a>
Document document = Jsoup.parse(tzurl);
Element element = document.selectFirst("a");
String href = element.attr("href");
return href;
}
private String parseOriginUrl(String tzurl) {if (StrUtil.isEmpty(tzurl)) {return "";}//<a href="/Portal/Read?AttachmentID=d13b693a644113">下载</a>Document document = Jsoup.parse(tzurl);Element element = document.selectFirst("a");String href = element.attr("href");return href;}