-6ren"> -需要帮助使用 JSOUP 从 HTML META 标记中提取 URL 值。这是我的 html - String html = "" 预期输出:“https://xyz.com/login.html?r-6ren">
gpt4 book ai didi

java - 使用 jsoup 解析

转载 作者:行者123 更新时间:2023-11-29 03:41:14 25 4
gpt4 key购买 nike

需要帮助使用 JSOUP 从 HTML META 标记中提取 URL 值。这是我的 html -

String html = "<HTML><HEAD><...></...><META ......><META ......><META http-equiv="refresh" content="1;URL='https://xyz.com/login.html?redirect=www.google.com'"></HEAD></HTML>"

预期输出:“https://xyz.com/login.html?redirect=www.google.com”

谁能告诉我该怎么做。谢谢

最佳答案

假设,这是第一个 META

String html_src = ...

Document doc = Jsoup.parse(html);
Element eMETA = doc.select("META").first();
String content = eMETA.attr("content");
String urlRedirect = content.split(";")[1];
String url = urlRedirect.split("=")[1].replace("'","");

关于java - 使用 jsoup 解析 <META 内容 ="">,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13079521/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com