1

私はスクレイプしようとしているこのHTMLを持っています:

    <textarea name="notes" rows="5" cols="60">some notes go here
    and more including a blank line:

    and another new
    line
    etc
    etc
    </textarea>

テキストエリアにあるため、brsや\nはありません。全文を簡単に入手できます。

    Element notes = doc.select("textarea[name=notes]").first();
    String notesStr = notes.text();

しかし、次のようにeditTextに結果を表示したいのですが、これは1行として返されました。

    some notes go here
    and more including a blank line:

    and another new
    line
    etc
    etc
4

1 に答える 1

0

これを試して:

Element notes = doc.select("textarea[name=notes]").first();
String notesStr = notes.getWholeText();

getWholeText(): オリジナルに存在する改行とスペースを含む、このテキスト ノードの (エンコードされていない) テキストを取得します。

于 2013-10-02T12:04:06.103 に答える