我正在使用jsoup使用以下代码来解析内容。
try{
Elements divElements = jsDoc.getElementsByTag("div");
for(Element divElement : divElements){
if(divElement.attr("class").equals("article-content")){
textList.add(divElement.text());
text = textList.toString();
}
}
}
catch(Exception e){
System.out.println("Couldnt get content");
}
唯一的问题是,返回的内容将带有[[]]括起来,就像这样。
我想这是因为我将其设置为列表。我该如何删除这些?
最佳答案
代替:
text = textList.toString();
和:
text = textList.toString().replace("[", "").replace("]", "");