Charset issues are confusing and complicated by themselves, but on top of that you have to remember exact names of your charsets. Is it "utf8"? Or "utf-8"? Or maybe "UTF-8"? When searching internet for code samples you will see all of the above. Why not just make them named constants and use Charset.UTF8?
|
|
|||
|
The simple answer to the question asked is that the available charset strings vary from platform to platform. However, there are six that are required to be present, so constants could have been made for those long ago. I don't know why they weren't. JDK 1.4 did a great thing by introducing the Charset type. At this point, they wouldn't have wanted to provide String constants anymore, since the goal is to get everyone using Charset instances. So why not provide the six standard Charset constants, then? I asked Martin Buchholz since he happens to be sitting right next to me, and he said there wasn't a really particularly great reason, except that at the time, things were still half-baked -- too few JDK APIs had been retrofitted to accept Charset, and of the ones that were, the Charset overloads usually performed slightly worse. It's sad that it's only in JDK 1.6 that they finally finished outfitting everything with Charset overloads. And that this backwards performance situation still exists (the reason why is incredibly weird and I can't explain it, but is related to security!). Long story short -- just define your own constants, or use Guava's Charsets class which Tony the Pony linked to (though that library is not really actually released yet). |
|||||||
|
|
Two years later, and Java 7's StandardCharsets now defines constants for the 6 standard charsets. If you are stuck on Java 5/6, you can use Guava's Charsets constants, as suggested by Kevin Bourrillion and Jon Skeet. |
|||
|
|
|
I'd argue that we can do much better than that... why aren't the guaranteed-to-be-available charsets accessible directly? Mind you, I also think that .NET chose a better strategy by defaulting to UTF-8 everywhere. It then screwed up by naming the "operating system default" encoding property simply Back to ranting about Java's charset support - why isn't there a constructor for Nurse, nurse - where's my medicine? EDIT: It occurs to me that this hasn't really answered the question. The real answer is presumably either "nobody involved thought of it" or "somebody involved thought it was a bad idea." I would strongly suggest that in-house utility classes providing the names or charsets avoid duplication around the codebase... Or you could just use the one that we use at Google. |
|||||||||||||
|
|
The current state of the encoding API leaves something to be desired. Some parts of the Java 6 API don't accept I can understand how things got to where they are; not sure I have any brilliant ideas about how to fix them. As an aside... You can look up the names for Sun's Java 6 implementation here. For UTF-8, the canonical values are |
|||
|
|
I have long ago defined a utility class with UTF_8, ISO_8859_1 and US_ASCII Charset constants. Also, some long time ago ( 2+ years ) I did a simple performance test between For that reason I included a utility in the same class
Why the String( byte[], Charset ) constructor does not do the same, beats me. |
||||
|
|
In Java 1.7
ex:
|
|||
|
|
MessageDigest#getInstance()by the way. – BalusC Nov 5 '09 at 22:34