Tagged Questions
Java is a popular Object Oriented language and runtime environment. Many Java programs run unchanged on most platforms.
410
votes
6answers
57k views
Why is subtracting these two times (in 1927) giving a strange result?
If I run the following program, which parses two date strings referencing times one second apart and compares them:
public static void main(String[] args) throws ParseException {
SimpleDateFormat ...
359
votes
31answers
148k views
How to avoid “!= null” statements in Java?
I work with java all day long. The most used idiom (code snippet) I'm programming in java, is to test if an object != null before I use it, to avoid a NullPointerException of course. But the code ...
358
votes
27answers
11k views
Using a piano keyboard as a computer keyboard
I have RSI problems and have tried 30 different computer keyboards which all caused me pain. Playing piano does not cause me pain. I would like to know if there is a way to capture MIDI from a MIDI ...
328
votes
27answers
129k views
When do you use Java's @Override annotation and why?
What are the best practices for using Java's @Override annotation and why?
It seems like it would be overkill to mark every single overridden method with the @Override annotation. Are there ...
317
votes
32answers
52k views
Creating a memory leak with Java
I just had an interview, and I was asked to create a memory leak with Java.
Needless to say I felt pretty dumb having no clue on how to even start creating one.
What would an example be?
314
votes
7answers
4k views
Java += operator
until today I thought that for example:
i += j;
is just a shortcut for:
i = i + j;
But what if we try this:
int i = 5;
long j = 8;
Then i = i + j; will not compile but i += j; will compile ...
290
votes
100answers
84k views
Hidden Features of Java [closed]
After reading Hidden Features of C# I wondered, What are some of the hidden features of Java?
274
votes
7answers
19k views
Why is char[] preferred over string for passwords?
In Swing, the password field has a getPassword() (returns char[]) method instead of usual getText() (returns String) method. Similarly, I have come across a suggestion not to use Strings to handle ...
272
votes
57answers
22k views
Is it just me or are interfaces overused? [closed]
Ok, I may resort to a tad ranting here, so let me apologize in advance, but I'm really curious if others find this pattern annoying too (and I wonder if it is a justifiable pattern)…
So, after just ...
257
votes
23answers
140k views
A better Java JSON library? [closed]
Can anyone recommend a good Java JSON library (better than the one from http://json.org/)? I've also found JSON-lib, which definitely looks like an improvement, but I'm wondering if there is anything ...
242
votes
27answers
55k views
Is Java pass by reference?
I always thought Java was pass by reference, however I've seen a couple of blog posts (e.g. this blog) that claim it's not. I don't think I understand the distinction they're making. Could someone ...
235
votes
27answers
24k views
Interview question: Check if one string is a rotation of other string [closed]
A friend of mine was asked the following question today at interview for the position of software developer:
Given two string s1 and s2 how will you check if s1 is a rotated version of s2 ?
Example: ...
231
votes
26answers
9k views
Why does this go into an infinite loop?
I'm a teacher, and yesterday a student wrote the following code:
public class Tests {
public static void main(String[] args) throws Exception {
int x = 0;
while(x<3) {
...
231
votes
9answers
33k views
Examples of GoF Design Patterns
I am learning GoF Java Design Patterns and I want to see some real life examples of them. Can you guys point to some good usage of these Design Patterns.(preferably in Java's core libraries).
Thank ...
230
votes
28answers
50k views
Fastest way to determine if an integer's square root is an integer
I'm looking for the fastest way to determine if a long value is a perfect square (i.e. its square root is another integer). I've done it the easy way, by using the built-in Math.sqrt() function, but ...
227
votes
29answers
34k views
What's the proper way to test a class with private methods using JUnit?
How do I use JUnit to test a class that has internal private methods? It seems bad to change the access modifier for a method just to be able to run a test.
226
votes
19answers
15k views
Pacman: how do the eyes find their way back to the monster hole?
I found a lot of references to the AI of the ghosts in Pacman, but none of them mentioned how the eyes find their way back to the central ghost hole after a ghost is eaten by Pacman.
In my ...
214
votes
12answers
134k views
Differences between HashMap and Hashtable?
What is the difference between a HashMap and a Hashtable in Java?
Which is more efficient for non-threaded applications?
209
votes
55answers
42k views
Check if at least 2 out of 3 booleans is true
An interviewer recently asked me this question: given 3 boolean variables a, b, c, return true if at least 2 out of the 3 are true.
My solution follows:
boolean atLeastTwo(boolean a, boolean b, ...
202
votes
13answers
137k views
In Java, how do I read/convert an InputStream to a String?
If you have java.io.InputStream object, how should you process that object and produce a String?
Suppose I have an InputStream that contains text data, and I want to convert this to a String (for ...
172
votes
5answers
97k views
How to create ArrayList (ArrayList<T>) from array (T[]) in Java
I have an array that is initialised like:
Element[] array = {new Element(1),new Element(2),new Element(3)};
I would like to convert this array into an object of the ArrayList class.
...
169
votes
9answers
25k views
Accurracy of technical arguments in JWZ's 1997 “java sucks” article with today's Java?
I'm currently using Java in a larger project and was curious which of the technical arguments in JWZ's famous "java sucks" article were still valid ten years later. The article starts like this:
I ...
165
votes
18answers
72k views
When to use LinkedList<> over ArrayList<>?
I've always been one to simply use List<String> names = new ArrayList<String>();
I use the interface as the type name for portability, so that when I ask questions such as these I can ...
162
votes
2answers
76k views
How to use java.net.URLConnection to fire and handle HTTP requests?
This subject is pretty often asked here and the Sun Oracle tutorial is too concise about the subject. So I thought, let's post a CW question and answer about this so that it can if necessary be ...
158
votes
22answers
146k views
How to deal with “java.lang.OutOfMemoryError: PermGen space” error
Recently I ran into this error in my web application:
java.lang.OutOfMemoryError: PermGen space
It's a typical Hibernate/JPA + IceFaces/JSF application running on Tomcat 6 and JDK 1.6.
Apparently ...
154
votes
5answers
39k views
'Must Override a Superclass Method' Errors after importing a project into Eclipse
Anytime I have to re-import my projects into Eclipse (if I reinstalled Eclipse, or changed the location of the projects), almost all of my overridden methods are not formatted correctly, causing the ...
148
votes
15answers
164k views
How to call SOAP web service with Android
I am having a lot of trouble finding good information on how to call a standard SOAP/WSDL web service with Android. All I've been able to find are either very convoluted documents and references to ...
146
votes
26answers
21k views
Useful Eclipse Java Code Templates
You can create various Java code templates in Eclipse via the
Window->Preferences->Java -> Editor -> Templates
e.g.
sysout is expanded to:
...
145
votes
31answers
164k views
How to sort a Map<Key, Value> on the values in Java?
I am relatively new to Java, and often find that I need to sort a Map on the values. Since the values are not unique, I find myself converting the keySet into an array, and sorting that array through ...
143
votes
17answers
34k views
What's the best mock framework for Java? [closed]
What's the best framework for creating mock objects in Java? Why? What are the pros and cons of each framework?
139
votes
7answers
136k views
Java: iterate through HashMap [closed]
Possible Duplicate:
How do I iterate over each Entry in a Collection Map?
What is the best way to iterate through a HashMap?
136
votes
15answers
29k views
What's the nearest substitute for a function pointer in Java?
I have a method that's about 10 lines of code. I want to create more methods that do the exact same thing except for a calculation that's going to change one line of code. This is a perfect ...
136
votes
17answers
53k views
Overriding equals and hashCode in Java
What issues / pitfalls must be considered when overriding equals and hashCode?
134
votes
8answers
23k views
Why should I bother about serialVersionUID?
Eclipse always warns me about serialVersionUID. What is this, and is this a matter of high importance? Is there any example where missing serialVersionUID will cause a problem?
134
votes
28answers
127k views
How to concatenate two arrays in Java?
I need to concatenate two String arrays in Java.
void f(String[] first, String[] second) {
String[] both = ???
}
What is the easiest way to do this?
131
votes
36answers
19k views
Questions every good Java/J2EE Developer should be able to answer? [closed]
I was going through Questions every good .Net developer should be able to answer and was highly impressed with the content and approach of this question, and so in the same spirit, I am asking this ...
131
votes
8answers
62k views
Breaking out of nested loops in Java
I've got a nested loop construct like this:
for (Type type : types) {
for (Type t : types2) {
if (some condition) {
// Do something and break...
break; // ...
129
votes
21answers
35k views
In Java, does return trump finally?
If I have a try/catch block with returns inside it, will the finally block be called?
For example:
try {
something();
return success;
}
catch (Exception e) {
return ...
127
votes
4answers
22k views
Who is preventing the release of Java 1.7? [closed]
I recently attended a talk by a Sun engineer, Charlie Hunt, regarding performance. The talk was interesting enough but one question was regarding the release date of 1.7.
He said it's delayed as ...
127
votes
12answers
58k views
Any good graphing packages for Android?
With Android removing the Swing and AWT libraries from Java, I was wondering what solutions have been developed to display simple bar histograms, line graphs and other simple data visualizations in ...
123
votes
15answers
79k views
How can I create an executable jar with dependencies using Maven?
I have written a little utility to run from the commandline. I want to package it in a single executable jar for distribution.
How can I make maven package all dependend jars into my jar?
121
votes
39answers
22k views
Things possible in IntelliJ that aren't possible in Eclipse?
I have heard from people who have switched either way and who swear by the one or the other.
Being a huge Eclipse fan but having not had the time to try out IntelliJ, I am interested in hearing from ...
120
votes
15answers
12k views
How to avoid Java Code in JSP-Files?
I'm new to Java EE and I know that something like the following three lines
<%= x+1 %>
<%= request.getParameter("name") %>
<%! counter++; %>
is an oldschool way of coding and in ...
119
votes
5answers
53k views
How to discover memory usage of my application in Android
I would like to know how I can find the memory used on my Android application, programmatically.
I hope there is a way to do it. Plus I would like to understand how to get the free memory of the ...
119
votes
31answers
39k views
C++ performance vs. Java/C#
My understanding is that C/C++ produces native code to run on a particular machine architecture. Conversely, languages like Java and C# run on top of a virtual machine which abstracts away the native ...
114
votes
10answers
15k views
Modern alternatives to Java [closed]
I have been a Java developer for 14 years and have written an enterprise-level (~500 kloc) Swing application that uses most of the standard library APIs. Recently, I have become disappointed with the ...
113
votes
11answers
71k views
Java inner class and static nested class
What is the main difference between a inner class and a static nested class in Java? Does design /implementation play a role in choosing any of these?
112
votes
22answers
6k views
Are “while(true)” loops so bad?
I've been programming in Java for several years now, but I just recently returned to school to get a formal degree. I was quite surprised to learn that, on my last assignment, I lost points for using ...
111
votes
9answers
81k views
Java - Convert String to enum
Say I have an enum which is just
public enum Blah {
A, B , C, D
}
and I would like to find the enum value of a string of for example "A" which would be Blah.A. How would it be possible to do ...
111
votes
11answers
51k views
Java: “implements Runnable” vs. “extends Thread”
From what time I've spent with threads in Java, I've found these two ways to write threads.
public class ThreadA implements Runnable {
public void run() {
//Code
}
}
//with a "new ...