vote up 6 vote down star
2

What is your "favorite" API annoyance or missing feature or misengineered part?

flag
4  
Hey closers, how is this not programming related? – flybywire Nov 8 at 17:24
I'm pretty sure there was a question asking pretty much the same thing already, can't find it right now 'though ... – Joachim Sauer Nov 8 at 18:06
2  
See: stackoverflow.com/questions/457884/… – Shog9 Nov 8 at 19:08
1  
@Shog9, Though this may still be a dupe, the question you linked is about the language, not the API. – finnw Nov 8 at 23:43

27 Answers

vote up 35 vote down check

java.util.Date is one and all epic fail. The Calendar isn't much better. I am really looking toward JSR-310. Until then Joda Time is a perfect alternative.

Edit: Oh, one more comes to mind: java.sql.Connection, Statement and ResultSet doesn't implement kind of Closeable interface such as Java IO (finally) has since 1.5. You have to write at least three almost the same utility methods to close all of them in a short and proper manner.

link|flag
+1, a total failure. – Yishai Nov 8 at 17:24
As annoying as the broken Date API is, it's good to know that that's the worst core API we have to deal with ;-) – Joachim Sauer Nov 8 at 18:14
Date is essentially just a reimplementaiton of the Unix date structure. Calendar is a bad, bad donation - if I remember correctly - from a failed project. I believe the name was Taglient, but apparently I cannot spell it :) – Thorbjørn Ravn Andersen Nov 8 at 18:53
1  
sql.Date, sql.Time and sql.Timestamp are also worth mentioning here! Three subclasses of util.Date which have their own overridden logic which makes them completely pointless! While OO is good, not everything should be in its own class... – Esko Nov 8 at 18:53
1  
...and this reflects to ResultSet's accessors too, in some JDBC drivers you can use getDate(), getTime() and getTimestamp() for all the different datetime fields which just makes no sense at all. – Esko Nov 9 at 7:29
show 6 more comments
vote up 1 vote down

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.

link|flag
vote up 0 vote down

(Input|Output)Stream.close() throws a checked exception which means you have to litter your stream handling code with nested try/catch blocks.

link|flag
vote up 0 vote down

Integer, Double,... comparison.

if (oneDouble.compareTo(otherDouble) > 0)

or

if (oneDouble.isGreaterThan(otherDouble))

and of course all the analog.

link|flag
vote up 2 vote down

The Exception hierarchy has always been broken in my eyes:

exception hierarchy

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.

link|flag
vote up 0 vote down

I hate how JDBC PreparedStatement derives from Statement, and then proceeds to override half of the latter methods (essentially all that make it a "statement") with throwing stubs, replacing them with its own equivalents.

Ultimately, it exposes the design flaw of Statement class, instances of which - contrary to its name - do not represent statements at all. Instead, they are kinda result cursors in disguise (due to "one open ResultSet per Statement" rule), though what's the purpose of having such an object is completely beyond me.

link|flag
vote up 3 vote down

Poor choices for of names are a favourite pet hate.

Classes which extend a class of the same name.

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

InternalFrame InternalFrame
Title Pane,
Internal Frame 
Title Pane.

Maximize Button Window,
Not Focused State.
link|flag
vote up 1 vote down

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.

InputStream in = null; 
try {
  in = new FileInputStream(filename);
  // ... some IO operations
} finally {
  // This is the ugly part 
  try {
    if (in != null)
      in.close();
  } catch (IOException e) {
    //Ignore this exception (maybe log it)
    //but never rethrow it.
  }
}
link|flag
This is not totally true. In TCP sockets you want to know if there is an exception when closing the socket because it might mean that buffered data could not be flushed. – flybywire Nov 9 at 6:17
@flybywire - surely you are talking about a socket outputstream not a socket inputstream ... – Stephen C Nov 9 at 6:40
Being fixed in java 7! <code> try (InputStream in = new FileInputStream(filename)) { // ... some IO operations } </code> and that's it! – Kevin Bourrillion Nov 9 at 22:04
Yes can't wait for that feature in java 7. – alexander.egger Nov 10 at 8:54
vote up 1 vote down

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.)

link|flag
Why do you need to? – kts Nov 9 at 13:34
vote up 0 vote down

Aside from SimpleDateFormat not being thread safe, the equals and hash code methods of java.lang.URL doing external lookups, which is particularly annoying if the addresses point to two different virtual hosts with the same IP address.

link|flag
vote up 2 vote down

Not so much an annoyance as just plain wrong: there is a case where the following code can enter the final else {...} part.

if (a==b) { ... } else if (a<b) {...} else if (a>b) {...} else {...}

The case is:

Interger a = new Integer(1); Integer b = new Integer(1);

In case you wonder why: Some comparisons are unboxed, others are not.

link|flag
Yes. This goes back to using '==' as 'reference equals' and 'primitive equals' operator. Objects should not have operator==, but rather operator=== or a .sameReference method. – kts Nov 9 at 13:41
vote up 3 vote down

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).

link|flag
Was there a reason for that? – Liran Orevi Dec 3 at 23:45
Not that I know of. – Dan Dyer Dec 4 at 0:03
vote up 18 vote down

My favourite is java.net.URL. .equals() and .hashCode() require network access, because of the silly spec that two URLs are equal if their domain names resolve to the same IP. Not only does this mean that putting them into collections is slow and doesn't work when the network has been firewalled out on a customer's site, but it means that two URLs that will serve different content with HTTP/1.1 will return equal.

link|flag
2  
luckily they fixed that with the URI class – Jorn Nov 8 at 19:08
vote up 0 vote down

that a method having an argument of type

MyClass<AnyType>

leads to the same signature as

MyClass<AnotherType>

does...

link|flag
I believe you are looking for the phrase "Type Erasure" – kts Nov 9 at 13:36
vote up 0 vote down
  1. The java.math.BigInteger class is a total joke without operator overloading. Something as simple as (a+b)-c becomes (a.add(b)).subtract(c).

  2. Lack of a MultiSet container.

+ the points raised in other posts (especially Date).

link|flag
1  
code.google.com/p/google-collections has multi-set (among others). I believe apache-collections does too but is still 1.4 (no generics). I remember hearing about a project to fix it, but don't know what happened to it. – kts Nov 9 at 13:35
Thanks for the google-collections reference. I'm trying it our right now. – MAK Nov 9 at 17:06
vote up 5 vote down

String comparison:

if ("somestring".equals(foo)) ...

instead of

if (foo == "somestring") ...

"You can't be serious!" -- John McEnroe

link|flag
Yes it can, foo == "object" is comparing references. The "object" is an actual object, you can use the string functions off of the string. – steven Dec 3 at 23:34
vote up 9 vote down

There's a String.split() method, but no String.join(). So annoying.

See also "Ten Little Soul Crushing Features of Java"

link|flag
+1: ran into this a couple of time as well. – BalusC Nov 8 at 18:22
Yea ... but you cannot define a symmetric split/join because (for a start) split takes a regex string as a parameter. – Stephen C Nov 9 at 1:08
2  
That's not a good excuse. Join could use the regex to randomly generate delimiters :) – Dave Ray Nov 9 at 2:34
vote up -3 vote down

I think java persistent API

link|flag
1  
-1; give a rationale. – Rob Nov 9 at 19:45
vote up 1 vote down

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 ...

link|flag
vote up 11 vote down

java.util.Stack deserves a special mention for violating Object Oriented Programming 1-0-1:

Stack inherits from Vector but does not obey the "is-a" relationship typical of inheritance relationships. This (mis)implementation makes it possible to perform "illegal" operations on the stack such as inserting an element at an arbitrary position.

link|flag
Oh, java.sql.Date interits from java.util.Date, but doesn't obey the "is-a" relationship. This is "clearly" documented, but leads to hibernate giving you "Date"s that are not comparable with your own "Date"s. – davidsheldon Nov 9 at 17:16
Isn't Stack deprecated these days? I remember seeing somewhere that you should use a Deque instead. – R. Bemrose Nov 9 at 20:17
vote up 2 vote down

+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:

Map<Integer, String> someMap = new HashMap<Integer,String>();

This will be fixed in Java 7 with generic type inference so the above line will end up looking like this:

Map<Integer, String> someMap = new HashMap<>();
link|flag
vote up 4 vote down

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:

  1. Swing is too intertwined with AWT. IMHO it is a good example of when you have to give up on inheritance.
  2. The text in the JavaDoc that provides instructions for people using a method in an interface or a base class is often mixed with the text for people overriding or implementing that method. No real way to overcome this since there is one javadoc per method, but they could have wrote this better.
  3. Naming that doesn't convey everything (e.g., Hashtable vs. HashMap and the threading issues).
  4. The date and calendar API. 'nuff said.

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.

link|flag
1  
+1 for the last paragraph. And to be honest, I wish people would quit complaining about these things. Nothing is ever perfect. Not even C# ... – Stephen C Nov 9 at 1:15
2  
My response to Stroustrup: API design is like sex: make one mistake and support if for the rest of your life. --joshbloch twitter.com/joshbloch/status/5177847605 – Pascal Thivent Nov 9 at 2:56
vote up 11 vote down

SimpleDateFormat is not thread-safe. I mean, how hard can that be to fix ?

link|flag
+1: I recall very good that it was one of my first serious programming mistakes when I professionally started with Java a couple of years ago. It was hard to believe my mentor when he told that it was kind of a flaw in the API. – BalusC Nov 8 at 17:55
I visited a client who had written a custom JAXB marshaller that used this. All went well when they ran single-threaded. A few months later they ran it in a multi-threaded mode, and obviously generated a ton of invalid XML :-( Nice, huh! – Brian Agnew Nov 8 at 17:59
3  
Thread-safety makes slower... You should only make things thread safe if you need to. – Thorbjørn Ravn Andersen Nov 8 at 18:55
3  
I think I would be hard pushed to write a date formatter that wasn't thread-safe. I'm not talking about synchronisation. I'm struggling to understand where the shared state comes from. – Brian Agnew Nov 8 at 19:04
To clarify, if all the state is kept on the stack during the method call, then it's thread-safe without any expensive (or inexpensive) locking. – Brian Agnew Nov 8 at 19:12
show 4 more comments
vote up 8 vote down

BalusC beat me to the date API, so I'll list my second one: The fact that clone() is totally broken. I don't think there is anything about the API you could define as not broken, including naming.

link|flag
If you think the entire API is broken, why bother using it? – Jorn Nov 8 at 17:32
@Jorn: required at work or school? – 280Z28 Nov 8 at 17:36
Java7 will include "automatic resource management", read: "automatic close". I think the syntax is something like try{ SomeStream = ... } <- close implied (even if return or throw is involved). – java.is.for.desktop Nov 8 at 17:45
1  
@Jorn, I don't (except to clone an array) as recommended in Effective Java, but sometimes you have to use it because that is how others implemented it, and it is a constant code quality issue on projects. But the real annoyance is that you have to implement your own copy mechanism when a standard one would have been just fine. – Yishai Nov 8 at 17:47
2  
@java.is.for.desktop: close != clone. – BalusC Nov 8 at 17:50
show 3 more comments
vote up -1 vote down

Missing of operator overloading.

link|flag
3  
That isn't an API issue, rather a language issue, but I think just like they made an exception for + on String, they should have made exceptions for the built-in numeric APIs, such as BigInteger and BigDecimal. – Yishai Nov 8 at 17:23
Right it's not an API, but still it's very missing for me. – Artem Barger Nov 8 at 17:37
A hot debated issue. But most Java programmers seem to like it that way. The experience from C++ and C# demonstrates us that most people tend to use operator overloading in a confusing way. – java.is.for.desktop Nov 8 at 17:47
1  
Operator overloading means you can never be certain that what you see, means what you think, unless you CHECK! EVERY TIME !! Sigh :( – Thorbjørn Ravn Andersen Nov 8 at 18:57
1  
This is indeed some a problem, I recently had to create an adapter class for an updated interface and the actual implementation is made so that each type of class implementing the interface is a singleton. Easiest way to test the equality? == and !=, of course - except since I can't overload operators, I can't make my SomeClassImplementingInterfaceWrapper == SomeClassImplementingInterface, instead I have to override equals() and hashCode() and just hope no one took the shortcut of using == or != in the old code... – Esko Nov 8 at 18:58
vote up 8 vote down

int, double, and other primitives cannot be used as generics

link|flag
2  
Those aren't object types. Use Integer, Double, etc instead. – BalusC Nov 8 at 17:21
2  
this is a language problem and not library but I totally agree, +1 – flybywire Nov 8 at 17:21
3  
Annoying for sure, but not an API issue, rather a language issue. – Yishai Nov 8 at 17:22
Autoboxing almost solves this issue. – fastcodejava Nov 9 at 3:45
autoboxing wastes memory and cpu-time; it is only a compile-time trick – dfa Nov 9 at 9:21
show 1 more comment
vote up 3 vote down

Mine is that java.util.Map.get does not accept a default object if they key is missing in the Map.

Therefore I find myself too much writing this code:

Object value = map.get(key) == null ? default : map.get(key);

UPDATE

After Pascal's comment showed me how all my code is buggy, should have been:

Object value = map.containsKey(key) ? map.get(key) : default;
link|flag
5  
What if the value associated to key is actually null? – Pascal Thivent Nov 8 at 17:20
That's more a language problem, not an API problem. If it really annoys you, switch to C#: Object value = map.get(key) ?? default; (called the null-coalescing operator), or wait until future Java releases (as far as I know, it won't be in Java7). – BalusC Nov 8 at 17:30
In .NET we have if (!map.TryGetValue(key, out value)) value = defaultValue; – 280Z28 Nov 8 at 17:31
Take a look at the DefaultedMap: commons.apache.org/collections/apidocs/… – Jorn Nov 8 at 17:31
Originally I thought this post was about the performance issue involved in not having a GetOrAdd method, but that's not the case since you're getting the key twice. TryGetValue is perfect for the use here, and the new ConcurrentDictionary type in .NET 4 does have a GetOrAdd method, which takes either a value or a function to lazy-eval: msdn.microsoft.com/en-us/library/… – 280Z28 Nov 8 at 17:35
show 1 more comment

Your Answer

Get an OpenID
or

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