使用JAVA将window.open(Hyperlink)Javascript代码转换为纯绝对URL

使用JAVA将window.open(Hyperlink)Javascript代码转换为纯绝对URL,第1张

使用JAVA将window.open(Hyperlink)Javascript代码转换为纯绝对URL

使用正则表达式。这将做您想要的:

String input = "window.open('http://saudisale.com/arPrivatePage.aspx?id=21871638','_blank','channelmode =1,scrollbars=1,status=0,titlebar=0,toolbar=0,resizable=1');";String regex = "window.open\(['"]*(.*?)(\s*['"]*,.*?)";Pattern pattern = Pattern.compile(regex); Matcher matcher = pattern.matcher(input);while (matcher.find()) {    String output = (matcher.group().replaceAll(regex, ""));    System.out.println(output);}

最后两个URL是 相对的
,因此您必须按照此处所述将它们转换为绝对URL 。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5498764.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存