How to tell if a URL parameter needs to be encoded in Java - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T08:31:55Zhttp://stackoverflow.com/feeds/question/183830http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/183830/how-to-tell-if-a-url-parameter-needs-to-be-encoded-in-java0How to tell if a URL parameter needs to be encoded in JavaJulie2008-10-08T17:10:16Z2008-10-08T20:15:46Z
<p>I'm writing a Java app that is accepting URL parameter values that may or may not be encoded. I need an easy way to tell whether or not I need to encode the parameter string.</p>
<p>In other words, I want a function <code>boolean needsEncoding(String param)</code>, which will return true if I pass in the String "foo@test.com", and false if I pass in "foo%40test.com". The problem with this idea is that this is ambiguous. How would I know whether or not the "%" sign in the latter string should be encoded? One way to handle this is to modify my contract - require clients to pass in un-encoded strings so that I know I always need to encode them. Thoughts?</p>
http://stackoverflow.com/questions/183830/how-to-tell-if-a-url-parameter-needs-to-be-encoded-in-java/183832#1838325Answer by Julie for How to tell if a URL parameter needs to be encoded in JavaJulie2008-10-08T17:10:47Z2008-10-08T17:10:47Z<p>I thought I'd put this as a proposed answer so that people can vote:</p>
<p>One way to handle this is to modify my contract - require clients to pass in un-encoded strings so that I know I always need to encode them.</p>
http://stackoverflow.com/questions/183830/how-to-tell-if-a-url-parameter-needs-to-be-encoded-in-java/183852#1838520Answer by JeeBee for How to tell if a URL parameter needs to be encoded in JavaJeeBee2008-10-08T17:16:09Z2008-10-08T17:16:09Z<p>Signs a string has been URL Encoded:</p>
<ol>
<li>There are no spaces, but a lot of plus symbols.</li>
<li>All percentage signs are followed by two digits.</li>
<li>There are no characters outside of a..b, A..B, 0..9, ".", "<em>", "-", "</em>", "%" and "+" in it.</li>
</ol>
<p>However I think that changing the contract is the recommended action here.</p>
http://stackoverflow.com/questions/183830/how-to-tell-if-a-url-parameter-needs-to-be-encoded-in-java/183873#1838730Answer by Sijin for How to tell if a URL parameter needs to be encoded in JavaSijin2008-10-08T17:22:22Z2008-10-08T17:22:22Z<p>how about decoding the string and checking if all the differences between the original and decoded string are valid url entities.</p>
http://stackoverflow.com/questions/183830/how-to-tell-if-a-url-parameter-needs-to-be-encoded-in-java/184664#1846640Answer by shadit for How to tell if a URL parameter needs to be encoded in Javashadit2008-10-08T20:15:46Z2008-10-08T20:15:46Z<p>You could use <code>java.net.URLDecoder</code> on the input and see if it changes by comparing the input and output String values. Looking at the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/net/URLDecoder.html" rel="nofollow">Javadocs</a> for <code>URLDecoder</code>, it describes the business logic it applies on an input String to determine whether or not it requires URL decoding.</p>
<p>If you MUST get a <code>boolean</code> result and do not want to incur the overhead of attempted decoding to get that <code>boolean</code> result, you can always crack open the source code of the <code>URLDecoder</code> class and use the same business logic it uses to determine if URL decoding is necessary.</p>