私はスクレイプしようとしているこの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