vote up 3 vote down star
2

Is there a good way to remove HTML from a Java string? A simple regex like

 replaceAll("\\<.*?>","")

will work, but things like

&amp;

wont be converted correctly and non-HTML between the two angle brackets will be removed (ie the .*? in the regex will disappear).

flag

5 Answers

vote up 4 vote down check

Another way is to use javax.swing.text.html.HTMLEditorKit to extract the text.

import java.io.*;
import javax.swing.text.html.*;
import javax.swing.text.html.parser.*;

public class Html2Text extends HTMLEditorKit.ParserCallback {
 StringBuffer s;

 public Html2Text() {}

 public void parse(Reader in) throws IOException {
   s = new StringBuffer();
   ParserDelegator delegator = new ParserDelegator();
   // the third parameter is TRUE to ignore charset directive
   delegator.parse(in, this, Boolean.TRUE);
 }

 public void handleText(char[] text, int pos) {
   s.append(text);
 }

 public String getText() {
   return s.toString();
 }

 public static void main (String[] args) {
   try {
     // the HTML to convert
     FileReader in = new FileReader("java-new.html");
     Html2Text parser = new Html2Text();
     parser.parse(in);
     in.close();
     System.out.println(parser.getText());
   }
   catch (Exception e) {
     e.printStackTrace();
   }
 }
}

ref : Remove HTML tags from a file to extract only the TEXT

link|flag
vote up 1 vote down

If the user enters <b>hey!</b>, do you want to display <b>hey!</b> or hey!? If the first, escape less-thans, and html-encode ampersands (and optionally quotes) and you're fine. A modification to your code to implement the second option would be:

replaceAll("\\<[^>]*>","")

but you will run into issues if the user enters something malformed, like <bhey!</b>.

You can also check out JTidy which will parse "dirty" html input, and should give you a way to remove the tags, keeping the text.

The problem with trying to strip html is that browser have very lenient parsers, more lenient than any library you can find will, so even if you do your best to strip all tags (using the replace method above, a DOM library, or JTidy), you will still need to make sure to encode any remaining HTMl special characters to keep your output safe.

link|flag
vote up 7 vote down

HTML Escaping is really hard to do right- I'd definitely suggest using library code to do this, as it's a lot more subtle than you'd think. Check out Apache's StringEscapeUtils for a pretty good library for handling this in Java.

link|flag
This is the sort of thing I'm looking for but I want to strip the HTML instead of escaping it. – Mason Oct 27 '08 at 17:12
do you want to strip the html, or do you want to convert it to plain text? Stripping the HTML from a long string with br tags and HTML entities can result in an illegible mess. – Tim Howland Oct 27 '08 at 17:52
vote up 2 vote down

You might want to replace <br/> and </p> tags with newlines before stripping the HTML to prevent it becoming an illegible mess as Tim suggests.

The only way I can think of removing HTML tags but leaving non-HTML between angle brackets would be check against a list of HTML tags. Something along these lines...

replaceAll("\\<[\s]*tag[^>]*>","")

Then HTML-decode special characters such as &amp;. The result should not be considered to be sanitized.

link|flag
vote up 1 vote down

It sounds like you want to go from HTML to plain text. If that is the case look at www.htmlparser.org. Here is an example that strips all the tags out from the html file found at a URL. It makes use of org.htmlparser.beans.StringBean.

    static public String getUrlContentsAsText(String url) {
	     String content = "";
	     StringBean stringBean = new StringBean();
	     stringBean.setURL(url);
	     content = stringBean.getStrings();
	     return content;
     }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.