对于学校项目我需要解析arXiv.org API响应代码,以收集一些信息。 我正在使用Jsoup并且我遇到了问题:
我有这样的标签:
String value = document.select("arxiv:comment").text();
但是这给了我这个错误:
Exception in thread "main" org.jsoup.select.Selector$SelectorParseException: Could not parse query 'arxiv:comment': unexpected token at ':comment'
答案 0 :(得分:1)
我找到了解决方案:
匹配<tag:aa>..</tag:aa>
等标记的正确语法是:
$document.select("tag|aa").text();