Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am of course familiar with the java.net.URLEncoder and java.net.URLDecoder classes. However, I only need HTML-style encoding. (I don't want ' ' replaced with '+', etc). I am not aware of any JDK built in class that will do just HTML encoding. Is there one? I am aware of other choices (for example, Jakarta Commons Lang 'StringEscapeUtils', but I don't want to add another external dependency to the project where I need this.

I'm hoping that something has been added to a recent JDK (aka 5 or 6) that will do this that I don't know about. Otherwise I have to roll my own.

share|improve this question

5 Answers

There isn't a JDK built in class to do this, but it is part of the Jakarta commons-lang library.

String escaped = StringEscapeUtils.escapeHtml3(stringToEscape);
String escaped = StringEscapeUtils.escapeHtml4(stringToEscape);

Check out the JavaDoc

Adding the dependency is usually as simple as dropping the jar somewhere, and commons-lang has so many useful utilities that it is often worthwhile having it on board.

share|improve this answer
5  
As I said in a comment to another answer, adding a dependency is NOT as simple as dropping a JAR somewhere. Lawyers need to go over the license for the 3rd party JAR, installers need to be changed, and so on. It's not always trivial. – Eddie Mar 17 '09 at 22:11
1  
I also don't like the notion of taking a dependency for a single method. – Mohamed Nuur Mar 10 '11 at 2:06
1  
Please note that your method signature above is wrong. the HTML should have a lowercase tml String escaped = StringEscapeUtils.escapeHtml(stringToEscape); – Eric Aug 12 '11 at 21:30

A simple way seem to be this one:

public static String encodeHTML(String s)
{
    StringBuffer out = new StringBuffer();
    for(int i=0; i<s.length(); i++)
    {
        char c = s.charAt(i);
        if(c > 127 || c=='"' || c=='<' || c=='>')
        {
           out.append("&#"+(int)c+";");
        }
        else
        {
            out.append(c);
        }
    }
    return out.toString();
}

Source: http://forums.thedailywtf.com/forums/p/2806/72054.aspx#72054

share|improve this answer
Thanks its just what I needed. – Subir Kumar Sao Jul 3 '12 at 5:39
up vote 7 down vote accepted

Apparently, the answer is, "No." This was unfortunately a case where I had to do something and couldn't add a new external dependency for it -- in the short term. I agree with everyone that using Commons Lang is the best long-term solution. This is what I will go with once I can add a new library to the project.

It's a shame that something of such common use is not in the Java API.

share|improve this answer

No. I would recommend using the StringEscapeUtils you mentioned, or for example JTidy (http://jtidy.sourceforge.net/multiproject/jtidyservlet/apidocs/org/w3c/tidy/servlet/util/HTMLEncode.html).

share|improve this answer

Please don't roll your own. Use Jakarta Commons Lang. It is tested and proven to work. Don't write code until you have to. "Not invented here" or "Not another dependency" is not a very good base for deciding what to choose / write.

share|improve this answer
6  
In general, I would agree with you. But I'm adding an additional diagnostic output to something that is in production. Lawyers get involved when a new 3rd party dependency is added. It's not as trivial as you think. Otherwise I would not have asked the question! – Eddie Mar 17 '09 at 20:18
3  
Keep the philosophy out of stackoverflow :) everyone has their reasons to rewrite code. – ricosrealm May 10 '12 at 8:52
Usually, that's an advice to those who write code without knowing exactly what it does. Never listening to such advices made a developer out of me - I mean, that is how I learned and improved. – Ivaylo Slavov Sep 11 '12 at 9:10
Unless the project is supposed to be done yesterday and you have to take care of 3 other projects at the same time. Sometimes there are real-world constraints to think about, and rolling your own is usually a surefire way to introduce more bugs (and hence use more time). – futureelite7 Feb 4 at 5:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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