Parsing Java String with SGML
问题 I have a Java String with SGML, something like this... <misspell></misspell><plain>I</plain> <plain>know</plain> <plain>you</plain> <suggestion>ducky</suggestion> <plain>suck</plain> <plain>and</plain> <plain>I</plain> <plain>rocky</plain> <plain>rock</plain> How do I parse it to get for instance say the text inside <suggestion> </suggestion> so as to get "ducky" out?? Will javax.swing.text.html.parser.Parse can be of any help? or I can only parse HTML docs with it? 回答1: The string you show