由于jsoup不是javascript库,因此有两种方法可以解决此问题:
A.使用Javascript库优点:
- 全面的Javascript支持
缺点:
附加的天秤/依赖项
优点:
- 无需额外的库
- 足以完成简单的任务
缺点:
不像javascript库那样灵活
这是一个如何
key使用jsoup和一些 “手动” 代码获取示例的示例:
document doc = ...Element script = doc.select("script").first(); // Get the script partPattern p = Pattern.compile("(?is)key="(.+?)""); // Regex for the value of the keyMatcher m = p.matcher(script.html()); // you have to use html here and NOT text! Text will drop the 'key' partwhile( m.find() ){ System.out.println(m.group()); // the whole key ('key = value') System.out.println(m.group(1)); // value only}
输出(使用您的html部分):
key="pqRjnA"pqRjnA
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)