What I understand from the documentation is that UnsupportedEncodingException can only be thrown if I specify a wrong encoding as the second parameter to URLDecoder.decode(String, String) method. Is it so? I need to know cases where this exception can be thrown.

Basically, I have this code segment in one of my functions:

    if (keyVal.length == 2) {
    try {
      value = URLDecoder.decode(
              keyVal[1],
              "UTF-8");
    } catch (UnsupportedEncodingException e) {
      // Will it ever be thrown?
    }

Since I am explicitly mentioning "UTF-8", is there any way this exception can be thrown? Do I need to do anything in the catch block? Or, if my understanding is completely wrong, please let me know.

link|improve this question

73% accept rate
feedback

3 Answers

up vote 6 down vote accepted

It cannot happen, unless there is something fundamentally broken in your JVM. But I think you should write this as:

try {
    value = URLDecoder.decode(keyVal[1], "UTF-8");
} catch (UnsupportedEncodingException e) {
    throw new AssertionError("UTF-8 is unknown");
    // or 'throw new AssertionError("Impossible things are happening today. " +
    //                              "Consider buying a lottery ticket!!");'
}

The cost of doing this is a few bytes of code that will "never" be executed, and one String literal that will never be used. That a small price for the protecting against the possibility that you may have misread / misunderstood the javadocs (you haven't in this case ...) or that the specs might change (they won't in this case ...)

link|improve this answer
feedback

That's because of the odd choice to make UnsupportedEncodingException checked. No, it won't be thrown.

I usually to do the following:

} catch (UnsupportedEncodingException e) {
  throw new AssertionError("UTF-8 not supported");
}
link|improve this answer
feedback

In your special case - no, it won't be thrown. Unless you execute your code in a Java runtime that does not support "UTF-8".

link|improve this answer
1  
Such a runtime is not supposed to exist - at least in JDK 1.6, UTF-8 is a standard charset. download.oracle.com/javase/6/docs/api/java/nio/charset/… – Mat May 17 '11 at 11:45
@Mat - I believe this too but .. Oracle is not the only vendor of Java runtimes. The java language spec does not mention any encodings that have to be supported (except: UTF-16 which is the specified encoding for char) – Andreas_D May 17 '11 at 11:55
Wow, thanks. I thought it did, and that javadoc seems to imply it but you're correct, that's not in the JLS. – Mat May 17 '11 at 12:02
feedback

Your Answer

 
or
required, but never shown

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