前端之家收集整理的这篇文章主要介绍了
如何使用jsoup从这个html标签获取文本?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我使用jsoup提取数据时,我遇到了一个位置.这样的数据:
This is a
我想得到这样的数据:这是一个数字
我怎样才能做到这一点?谁能帮我?
最佳答案
您可以将html解析为Document,选择body-Element并
获取其文本.
例:
Document doc = Jsoup.parse("This is a
输出:
This is a number
This is a strong number 2013
原文链接:/html/426443.html