请教这段HTML文本用Jsoup怎么解析出来?

公元2006年5月29日

我只需要“公元2006年5月29日”

怎么解析呢?

你这里直接取不就行了么
Document doc = Jsoup.parse( html );
System.out.println(doc.text());