What is your "favorite" API annoyance or missing feature or misengineered part?
feedback
|
closed as not constructive by Will♦ Jul 29 '11 at 12:53
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
Edit: Oh, one more comes to mind: | |||||||||||||||||
feedback
|
|
Poor choices for of names are a favourite pet hate. Classes which extend a class of the same name. java.sql.Date extends java.util.Date com.sun.corba.se.spi.orb.ORB extends com.sun.corba.se.org.omg.CORBA.ORB extends org.omg.CORBA_2_3.ORB extends org.omg.CORBA.ORB Error which is not an error com.sun.org.apache.xalan.internal.xsltc.compiler.util.TypeCheckError extends Exception Exception which is not an exception javax.print.FlavorException which is an interface Confusing mix of case com.sun.org.apache.bcel.internal.Constants.ArrayType which implement equals and hashcode but NOT hashCode() Stupidly long class name com.sun.java.swing.plaf.nimbus. InternalFrameInternalFrameTitlePaneInternalFrameTitlePaneMaximizeButtonWindowNotFocusedState The last one I liked so much I wrote a poem
| |||||||||||||
feedback
|
|
My favourite is | |||||
feedback
|
|
SimpleDateFormat is not thread-safe. I mean, how hard can that be to fix ? | |||||||||||||||||||||
feedback
|
|
There's a String.split() method, but no String.join(). So annoying. | |||||||||
feedback
|
|
| |||||
feedback
|
|
The When a boolean is created with As a consequence, I've seen many property files or configuration with I wish they had been more strict, and that any value other than For other usage we could use | ||||
|
feedback
|
|
One of my biggest Java API gripe is that
is forcing you to catch a checked exception (UnsupportedEncodingException) which CANNOT happen. ("CANNOT" used as defined by RFC2119) It cannot happen because if UTF-8 isn't supported by the VM then it's not a compliant JVM for every single JVM under the sun MUST ("MUST" used as defined by RFC2119) support UTF-8 or it is, well, not a JVM. I've posted about this 10 years ago or so and people have looked at me as if I just landed from a long trip to Mars... Yet of course ten years later a company gave me justice: Google. There's at least one Google Java collection where they acknowledged this as a serious Java API issue and provided a convenience workaround. Why oh why Java didn't have from the get-go a:
is beyond me. In a totally ironic turn of event, the fact that they didn't provide such a method made countless typos in "UTF-8" trigger the UnsupportedEncodingException. Promise I won't start ranting about checked exceptions (I've got my copy of "Effective Java" next to me and I'll read Joshua Bloch ranting about them for me ;) | |||||||||
feedback
|
|
int, double, and other primitives cannot be used as generics | |||||||||||||||||||||
feedback
|
|
Not so much an annoyance as just plain wrong: there is a case where the following code can enter the final
The case is:
In case you wonder why: Some comparisons are unboxed, others are not. | |||||||||
feedback
|
|
BalusC beat me to the date API, so I'll list my second one: The fact that | |||||||||||||||||||||
feedback
|
|
The Cloneable interface does not define the clone method (it's just a marker interface). So even if you know that an object implements Cloneable, you don't know whether it can actually be cloned (it might not have a public clone method). | |||||||||
feedback
|
|
Closing streams is a night mare. close() throwing an exception ruins your code and does not help you at all. If you rethrow the exception of close() you loose the original exception and the original exception is usually the important one.
| |||||
feedback
|
|
Oh gosh... I read the JavaDocs of the entire JDK for my Ph.D. and found so many annoyances beyond what already annoyed me from day-to-day programming. To name a few from my own experience though:
That being said, Hindsight is 20/20. It's hard to come up with the perfect API the first time around, and even harder to rectify it while maintaining backward compatibility. | |||||||||||||
feedback
|
|
I hate the fact that Java does not allow extracting static class metadata at compile (=coding) time. For example, there is no way to statically to refer to a function's name or a field's name for later reflection-use (for example). You must use a dummy constant (final static String FIELD_NAME = "fieldName") instead which is dumb as it could be more easily solved via native meta data reference (think enum and think enum's getName etc. or similar). However, http://projectlombok.org/ can spice up java just like that. But why is this not yet native java fuctionality? It should have been for so long now ... | ||||
|
feedback
|
|
The Exception hierarchy has always been broken in my eyes:
I've always thought it would make more sense for all java.lang.Exception and subtypes to be checked exceptions. Having java.lang.RuntimeExeption inherit from java.lang.Exception but being unchecked is just broken. | |||||||||
feedback
|
|
This one is hilarious. You need to go past to check whether the last column read was This is the case when you get | |||||
feedback
|
|
A little pet annoyance is that I'd like to write:
instead of
| |||||
feedback
|
|
Mine is that Therefore I find myself too much writing this code:
UPDATE After Pascal's comment showed me how all my code is buggy, should have been:
| |||||
feedback
|
|
+1 for Date/Calendar API Also the implementation of generics is pretty bad. Type erasure leads to some weird situations that are difficult to deal with. Also wildcards are confusing from time to time even after using them for years. One more gripe is that the generics syntax is overly verbose:
This will be fixed in Java 7 with generic type inference so the above line will end up looking like this:
| ||||
|
feedback
|
|
ByteBuffer as a Class with no corresponding Interface in NIO. There is no way to create a "custom" ByteBuffer implementation. (ByteBuffer can not be extended due to access levels of the constructors.) | ||||
|
feedback
|
|
The XML APIs: SAX, DOM, StAX. I agree that stuffs have improved with StAX, but it is still waaaay to complicated. We can of course blame XML for being an "only apparently" simple technology. Dealing with namespaces, entity, CDATA, etc. can make a trivial problem become a nightmare. But I still haven't digested the ugliness or reading XML with SAX and | ||||
|
feedback
|
|
I hate how JDBC Ultimately, it exposes the design flaw of | ||||
|
feedback
|
|
My recently found annoyance with Java. BufferedImages have the functions getRGB and setRGB which are nice, however they return an int and not Color. So if you would like to get the individual components without direct manipulation you would have to create a color object just for that, and then convert it back to int just to set the RGB. | ||||
|
feedback
|
|
A decent class for simple monetary calculations. BigDecimal is a right PITA to use if all you want is to do some invoicing for instance. There isn't even a method to quickly multiply by an integer or calculate a percentage. Would be great to have a class Monetary capable of these things. I'm thinking along the line $12.98 * 5 * 12.5%
| ||||
|
feedback
|
|
String comparison:
instead of
"You can't be serious!" -- John McEnroe | |||||||||||||||||||||
feedback
|
|
(Input|Output)Stream.close() throws a checked exception which means you have to litter your stream handling code with nested try/catch blocks. | ||||
|
feedback
|
|
The proliferation of CHECKED exceptions throughout the API. Most notably, java.sql.SQLException and java.io.IOException. They should be unchecked exceptions. Adding throw statements up your call stack until you get to the method that can handle them is ugly and tedious. And the nested Try-Catch-Finally's to close jdbc connections are a joke. | ||||
|
feedback
|
|
The collection api is mutable - thats ugly. But why there are to similar types | ||||
|
feedback
|
|
I have two favorits regarding java collections (beside some allready mentioned here): 1) 2) Searching java colelctions: | |||||
feedback
|
