Home Tutorial Java Corejava How you can escape a String for HTML using the StringEscapeUtils

 
 

How you can escape a String for HTML using the StringEscapeUtils
Posted on: April 10, 2010 at 12:00 AM
This tutorial demonstrate how to escape a String for HTML using the StringEscaptUtils

Description:

This tutorial demonstrate how you can escape a String for HTML using the StringEscapeUtils Here in this sample program it read the string variable and substitutes HTML entities using the StringEscapeUtils.escapeHtml() method. Its output will be seen at the console.

Configuration before running this example

Before running this program you need to set the class path. You can set the path of jar files in the batch file. Here it is written in pathset.bat file and the statement written inside is set classpath=.;lib/commons-io-1.4.jar;lib/commons-lang-2.4.jar

The directory structure of the files and lib folder containing commons-io-1.4.jar ,commons-lang-2.4.jar files shown below:

Code:

import org.apache.commons.io.FileUtils;
import org.apache.commons.lang.StringEscapeUtils;

class HtmlEscapeExample {
  public static void main(String[] argsthrows Exception {
    String str = "<sentence> Here is the few words sentence +
    & in the output, you will see how to escape a String for +
    HTML using StringEscapeUtils. </sentence>"
;
    String results = StringEscapeUtils.escapeHtml(str);
    System.out.println(results);
  }
}
 
 

Output:

Related Tags for How you can escape a String for HTML using the StringEscapeUtils:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.