2012-04-16 1 views
7

Мне нужно извлечь текст из узла, как это:Jsoup - извлечение текста

<div> 
    Some text <b>with tags</b> might go here. 
    <p>Also there are paragraphs</p> 
    More text can go without paragraphs<br/> 
</div> 

И мне нужно построить:

Some text <b>with tags</b> might go here. 
Also there are paragraphs 
More text can go without paragraphs 

Element.text возвращает только все содержимое дел. Element.ownText - все, что не входит в элементы детей. Оба ошибаются. Итерация через children игнорирует текстовые узлы.

Есть ли способ итерации содержимого элемента для получения текстовых узлов. Например.

  • Текстовый узел - Некоторый текст
  • Узел < б> - с тегами
  • Текст узла - может идти здесь.
  • Узел < р> - Также есть пункты
  • Text узел - Больше текст может обойтись без пунктов
  • Node < уш> - < пусто>

ответ

11

Element.children() возвращает Elements объект - список Element объектов. Посмотрев на родительский класс, Node, вы увидите методы, позволяющие получить доступ к произвольным узлам, а не только к элементам, например Node.childNodes().

public static void main(String[] args) throws IOException { 
    String str = "<div>" + 
      " Some text <b>with tags</b> might go here." + 
      " <p>Also there are paragraphs</p>" + 
      " More text can go without paragraphs<br/>" + 
      "</div>"; 

    Document doc = Jsoup.parse(str); 
    Element div = doc.select("div").first(); 
    int i = 0; 

    for (Node node : div.childNodes()) { 
     i++; 
     System.out.println(String.format("%d %s %s", 
       i, 
       node.getClass().getSimpleName(), 
       node.toString())); 
    } 
} 

Результат:

 
1 TextNode 
Some text 
2 Element <b>with tags</b> 
3 TextNode might go here. 
4 Element <p>Also there are paragraphs</p> 
5 TextNode More text can go without paragraphs 
6 Element <br/> 
+0

отлично работает, спасибо! –

3
for (Element el : doc.select("body").select("*")) { 

     for (TextNode node : el.textNodes()) { 

        node.text())); 

     } 

    } 
1

Предполагая, что вы хотите не только текст (без тегов) мое решение ниже.
Вывод:
Некоторые тексты с тегами могут быть здесь. Также есть параграфы. Больше текст может обойтись без пунктов

public static void main(String[] args) throws IOException { 
    String str = 
       "<div>" 
      + " Some text <b>with tags</b> might go here." 
      + " <p>Also there are paragraphs.</p>" 
      + " More text can go without paragraphs<br/>" 
      + "</div>"; 

    Document doc = Jsoup.parse(str); 
    Element div = doc.select("div").first(); 
    StringBuilder builder = new StringBuilder(); 
    stripTags(builder, div.childNodes()); 
    System.out.println("Text without tags: " + builder.toString()); 
} 

/** 
* Strip tags from a List of type <code>Node</code> 
* @param builder StringBuilder : input and output 
* @param nodesList List of type <code>Node</code> 
*/ 
public static void stripTags (StringBuilder builder, List<Node> nodesList) { 

    for (Node node : nodesList) { 
     String nodeName = node.nodeName(); 

     if (nodeName.equalsIgnoreCase("#text")) { 
      builder.append(node.toString()); 
     } else { 
      // recurse 
      stripTags(builder, node.childNodes()); 
     } 
    } 
} 
1

вы можете использовать TextNode для этой цели:

List<TextNode> bodyTextNode = doc.getElementById("content").textNodes(); 
    String html = ""; 
    for(TextNode txNode:bodyTextNode){ 
     html+=txNode.text(); 
    }