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

link|improve this question
9  
Hey closers, how is this not programming related? – flybywire Nov 8 '09 at 17:24
2  
2  
@Shog9, Though this may still be a dupe, the question you linked is about the language, not the API. – finnw Nov 8 '09 at 23:43
3  
Hey flybywire, how is this not subjective? – Ken Feb 24 '10 at 18:17
1  
@Ken: it's not subjective because it's a community wiki and even though individual response may be subjective (one's "favorite" is subjective) but the answers that gets the more upvotes tend to reflect very-real and very-non-subjective Java annoyances. But anyway here on SO "closers" are on heavy drugs, I'd like to have some of the stuff they're taking. Questions like this one make SO trully great. – SyntaxT3rr0r Mar 4 '10 at 16:30
show 1 more comment
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.

39 Answers

1 2
up vote 80 down vote accepted

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|improve this answer
4  
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 '09 at 18:53
2  
@Thorbjørn - are you thinking of Taligent ? – Brian Agnew Nov 8 '09 at 19:13
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 '09 at 7:29
1  
@Brian Agnew, yes that's the name. Have a look at wapedia.mobi/en/International_Components_for_Unicode (the history part and the prominent word "Calendar"). Sigh. Sigh. Sigh. – Thorbjørn Ravn Andersen Jan 21 '10 at 13:02
show 9 more comments
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

InternalFrame InternalFrame
Title Pane,
Internal Frame 
Title Pane.

Maximize Button Window,
Not Focused State.
link|improve this answer
30  
The poem made me almost cry (of laughing). – Lluis Martinez Jan 21 '10 at 21:42
2  
Thanks. It is hard to imagine a human actually chose that name or if it was generated code, didn't think sh!t, I have to fix that. ;) – Peter Lawrey Jan 23 '10 at 22:17
5  
I thought you just made up that class name until I googled it. Dear god – TheLQ Jul 31 '10 at 1:42
feedback

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|improve this answer
12  
luckily they fixed that with the URI class – Jorn Nov 8 '09 at 19:08
show 2 more comments
feedback

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

link|improve this answer
10  
Thread-safety makes slower... You should only make things thread safe if you need to. – Thorbjørn Ravn Andersen Nov 8 '09 at 18:55
18  
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 '09 at 19:04
3  
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 '09 at 19:12
3  
The shared state in SimpleDateFormat is the Calendar object used to decompose the date/time into its components. – Mark Thornton Dec 5 '09 at 15:14
2  
@Mark, and that is probably because the Calendar is heavy, heavy, heavy, which leads us back to stackoverflow.com/questions/1697215/… – Thorbjørn Ravn Andersen Jan 21 '10 at 13:04
show 5 more comments
feedback

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

See also "Ten Little Soul Crushing Features of Java"

link|improve this answer
6  
That's not a good excuse. Join could use the regex to randomly generate delimiters :) – Dave Ray Nov 9 '09 at 2:34
1  
@Stephen C: Who says that join/split need to be symmetric? They should just be close to what the user expects. – Robert Massaioli Jun 29 '11 at 1:28
show 2 more comments
feedback

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|improve this answer
5  
Isn't Stack deprecated these days? I remember seeing somewhere that you should use a Deque instead. – Powerlord Nov 9 '09 at 20:17
show 1 more comment
feedback

The Boolean class which defaults to false.

When a boolean is created with Boolean( String ) or Boolean.valueOf( String ) any value other that "true" (ignoring case) will lead to a boolean that is false.

As a consequence, I've seen many property files or configuration with "0", or "No" working correctly, but when toggled to "1" or "Yes" there is no effect.

I wish they had been more strict, and that any value other than "true" and "false" would yield a BooleanFormatException in a way similar to Integer.valueOf( String ).

For other usage we could use parseBoolean( String ) or a BooleanFormatter...

link|improve this answer
show 2 more comments
feedback

One of my biggest Java API gripe is that String's :

.getBytes("UTF-8")

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:

.getUTF8Bytes() 

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

link|improve this answer
8  
+1! Though the problem isn't the lack of String.getUTF8Bytes() but rather the absence of a few static Charset objects for all encodings Java is guaranteed to support, allowing you to say str.getBytes(Charset.UTF_8) - getBytes(Charset) doesn't throw anything checked. It simply makes no sense that you have to look up UTF-8, US-ASCII and other charsets which are guaranteed to be there, and it's not like it's hard to add a few public static final Charset fields in an appropriate place. – gustafc Apr 4 '10 at 0:13
1  
Well, no - getBytes(Charset) (available from 1.6) isn't declared to throw anything. So if you have a valid Charset you won't have to do any try/catching. – gustafc Apr 4 '10 at 10:40
show 2 more comments
feedback

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

link|improve this answer
2  
Those aren't object types. Use Integer, Double, etc instead. – BalusC Nov 8 '09 at 17:21
3  
this is a language problem and not library but I totally agree, +1 – flybywire Nov 8 '09 at 17:21
6  
Annoying for sure, but not an API issue, rather a language issue. – Yishai Nov 8 '09 at 17:22
2  
Autoboxing almost solves this issue. – fastcodejava Nov 9 '09 at 3:45
3  
Not an API issue. – Rob Nov 9 '09 at 19:41
show 2 more comments
feedback

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:

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

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

link|improve this answer
5  
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. – KitsuneYMG Nov 9 '09 at 13:41
1  
The final else is also reached when a or b or both are float or double NaNs. – x4u May 15 '11 at 21:57
show 3 more comments
feedback

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|improve this answer
2  
If you think the entire API is broken, why bother using it? – Jorn Nov 8 '09 at 17:32
3  
@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 '09 at 17:47
3  
@java.is.for.desktop: close != clone. – BalusC Nov 8 '09 at 17:50
1  
@BalusC, thanks, I was trying to figure out what he was referring to. – Yishai Nov 8 '09 at 17:53
3  
What I really hate clone is that it is on Object and not Cloneable. Plus, clone can't return a new object (say from a copy constructor) it must mess with the return of super.clone(). Even though every object has clone (thanks to inheriting from Object), if you try to call it w/o implmenting cloneable, it throws an exception. WTF? – KitsuneYMG Nov 9 '09 at 13:30
show 4 more comments
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).

link|improve this answer
1  
Was there a reason for that? – Liran Orevi Dec 3 '09 at 23:45
2  
Not that I know of. – Dan Dyer Dec 4 '09 at 0:03
show 1 more comment
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.

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|improve this answer
1  
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 '09 at 6:17
show 5 more comments
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:

  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 written 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|improve this answer
7  
+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 '09 at 1:15
7  
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 '09 at 2:56
1  
Any points for the irony of my edit? :D – sje397 Nov 25 '10 at 13:28
show 3 more comments
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 ...

link|improve this answer
feedback

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|improve this answer
1  
@ally.sutherland: the very presence of checked exception is debatable. There are languages that are doing perfectly fine without them. A checked exception is basically a big goto statement. I, for one, am working on a 200KLOC program where we're throwing exactly zero checked exception and the only time where we're forced to catch them is when we're dealing with broken (or legacy and broken) API. Joshua Bloch doesn't have nice things to say about checked exceptions, nor do all the languages authors who wrote perfectly cromulent languages that do not have the concept of checked exceptions. – SyntaxT3rr0r Mar 4 '10 at 16:37
4  
@WizardOfOdds: "A checked exception is basically a big goto statement" Say what? Argue against them if you like, but that's nonsense. The only logic I can see that would make that a true statement would be true of unchecked exceptions as well. Checked exceptions are a great thing. They're also trivially easy to get rid of if you don't like them: Set up your editor to automatically add throws Exception to every method signature you create. – T.J. Crowder Mar 29 '10 at 14:39
show 1 more comment
feedback

This one is hilarious. You need to go past to check whether the last column read was null or not.

This is the case when you get 0 from any of these ResultSet's getInt(), getDouble() etc. methods. Then you have to check it whether it was really 0 or null, by invoking wasNull() on the ResultSet.

link|improve this answer
1  
That's indeed hilarious (+1). That's also why ResultSet#getObject() is better: stackoverflow.com/questions/2158187/… – BalusC Feb 11 '10 at 17:36
feedback

A little pet annoyance is that String#format is static and not an instance method.

I'd like to write:

"My %s format".format("Nice");

instead of

String.format("My %s format", "Nice");
link|improve this answer
1  
@Pyrolistical isn't that already System.out.printf("My %s format","nice") ?? – Gareth Davis Oct 23 '11 at 7:03
show 4 more comments
feedback

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|improve this answer
9  
What if the value associated to key is actually null? – Pascal Thivent Nov 8 '09 at 17:20
show 5 more comments
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:

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|improve this answer
show 1 more comment
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.)

link|improve this answer
show 1 more comment
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 DefaultHandler#character() being sometimes called more than once per tag. Even if there is a rationale for that, it's still bad API to me.

link|improve this answer
show 1 more comment
feedback

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|improve this answer
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.

link|improve this answer
show 2 more comments
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%

Monetary m = new Monetary("12.98");
Monetary tax = m.multiply(5).percentage(12.5)
link|improve this answer
show 1 more comment
feedback

String comparison:

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

instead of

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

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

link|improve this answer
1  
Yes it can, foo == "object" is comparing references. The "object" is an actual object, you can use the string functions off of the string. – monksy Dec 3 '09 at 23:34
2  
If you override == to indicate string equality, how would you see if two strings were the same object? – Thorbjørn Ravn Andersen Jan 21 '10 at 13:05
1  
@Thorbjørn: why would you want to? – Jeremy Stein Feb 3 '10 at 15:06
1  
@Thorbjørn: you'd check for object equality with .equals(Object). If they were reversed, the much more common case would be easier. – Dean J Feb 11 '10 at 17:48
2  
@Thorbjørn: no, I would have designed it that way from the start. You can't change it for just strings, but it sure would have made a lot more sense (and saved a lot of keystrokes) if the spec was the other way around. – Dean J Feb 12 '10 at 14:43
show 2 more comments
feedback

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

link|improve this answer
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.

link|improve this answer
show 4 more comments
feedback

The collection api is mutable - thats ugly. But why there are to similar types Enumeration and Iterator? They just can have made Iterator extends Enumeration and introduce Enumerable instead of Iterable in Java 5. Now you always have to deal with both, adapt one to the other, i hate it.

link|improve this answer
show 1 more comment
feedback

I have two favorits regarding java collections (beside some allready mentioned here):

1) java.util.Map<K,V>.get : takes Object as argument not K as parameter type. I don't know if there is any good reason for this, I think its just anoying. If you change the type arguemnts of the Map instance you do not get any feedback from the compiler that your call to Map.get is faulty.

2) Searching java colelctions: java.util.Collection<T> just defines contains with a single argument of type (again) Object (why object and not T?) so I have no possibility to search the collection for other predicates than equals. Ironically there exists an interface called Compareable, which seems only to be used by binarySearch, not by contains, and sorting all your collections all the time is not very useful IMHO.

link|improve this answer
1  
I'm not 100% sure, but it seems a lot like backwards compatibility with pre-1.5 versions of Java which didn't have generics. – mjomble Jul 29 '11 at 19:22
show 2 more comments
feedback
1 2

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