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

I need to find whether the URL is encoded or not. As the input is dynamic it will be helpful if i know the regex to check it.

example -
www.test.com/?t=%E3%83%81%E3%82%B7%E3%83%BA%E3%83%B3%E3%83%9D%E3%83%BC%E3%83%AB

Thanks in advance

share|improve this question
What do you mean by encoded ? Can you show us some examples ? – Pascal MARTIN Apr 6 '11 at 17:34
Probably he means, e.g., space changed to %20. ;) – MPÄ™kalski Apr 6 '11 at 17:35
What input? What URL? Please post code and explain what you're having a problem with. – Brian Roach Apr 6 '11 at 17:35

4 Answers

up vote 2 down vote accepted

You could simply use URLDecoder to check whether the URL contained encoded parts or not rather than building a custom regular expression:

class UrlTest {
        public static void main(String[] args) throws java.io.UnsupportedEncodingException {
                String url = "http://example.com/%20foo";

                if(url.equals(java.net.URLDecoder.decode(url, "UTF-8"))) {
                        System.out.println("URL didn't contain encoded parts.");
                } else {
                        System.out.println("URL contained encoded parts.");                                                                                                                                
                }                                                                                                                                                                                          
        }                                                                                                                                                                                                  
}
share|improve this answer
You should also catch IllegalArgumentException. Indeed, if the input URL is not encoded, it might contains illegal characters or sequences of characters... – Po' Lazarus Apr 6 '11 at 17:53
i need to encode any string in the URL which is already encoded. I should not encode the entire url. – Balaji Apr 6 '11 at 18:01
there is no way to tell whenever text is URL encoded - it could contain %20 as normal content – Maciej Miklas Jul 4 '12 at 14:20

If you are asking because you want to encode the url if it is not already encoded, then the easiest thing to do is decode it then encode it again. That way you are guaranteed to end up with an encoded url.

share|improve this answer
i need to encode any string in the URL which is already encoded. I should not encode the entire url. – Balaji Apr 6 '11 at 17:57
Sure, so construct a java.net.URL, extract our all the component parts (path & query string), encode each element appropriately and tie it all back together again. – Joel Apr 7 '11 at 11:44

// regex for attempting to use any URL encoding, or .. for directory traversal

.*%[0-9a-fA-F]+|\.\.

share|improve this answer

Just look for a '%' followed by [0-F] - you'll know.

share|improve this answer
for example the url is www.test.com/?t=%E3%83%81%E3%82%B7%E3%83%BA%E3%83%B3%E3%83%9D%E3%83%BC%E3%83%AB – Balaji Apr 6 '11 at 17:38
Really? A downvote without a better answer - very productive. – Gandalf Apr 6 '11 at 17:38
And what about the hexadecimal numbers A..F? – joschi Apr 6 '11 at 17:38
1  
I voted down since the answer is either wrong or incomplete. Pick your flavor. – joschi Apr 6 '11 at 17:38
Happy? Keep spoon feeding everyone - good luck. – Gandalf Apr 6 '11 at 17:49

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.