10
votes
7answers
1k views
Why aren’t Java Collections remove methods generic?
Why isn't Collection.remove(Object o) generic?
Seems like Colle …
7
votes
8answers
6k views
Alternatives for java sql PreparedStatement IN clause issue?
I'm looking for the best workarounds for the PreparedStatement "IN clause" issue, which apparently is not supported for multiple values due to sql injection attack security issues: One ?, One valu …
1
vote
3answers
330 views
Detect windows logout in Java
Is there a library that I can use with Java to listen for user logout and possibly other Windows events? (Even better if it supports multiple platforms!)
I remember reading about a library …
28
votes
Hidden Features of Java
My favorite: dump all thread stack traces to standard out.
windows: CTRL-Break in your java cmd/console window
unix: kill -3 PID
…
0
votes
Logging activities in multithreaded applications
In Java5 (and later) you can call
StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace();
Inspect the stack trace to whatever depth you want and …
1
vote
What is Your Favourite Area of the Java API?
java.util.regex
There are other packages I can't live without, but the regex package has to be in the top tier of "greatest additions to java" -- definitely right up there with Collections. …
1
vote
If-statement - Check String against variable or variable against String?
I tend to check for null:
if(randomtext != null && randomtext.equals("stack overflow"))
{
//do something
}
…
