Tagged Questions
Java is an object-oriented language and runtime environment (JRE). Java programs are platform independent, because they are compiled to bytecode and their execution is handled by a Virtual Machine called the Java VM or JVM.
1670
votes
6answers
151k 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 ...
963
votes
7answers
138k views
Proper use cases for Android UserManager.isUserAGoat()?
I was looking at the new APIs introduced in Android 4.2. While looking at the UserManager class I came across the following method:
public boolean isUserAGoat ()
Used to determine whether the ...
874
votes
40answers
283k views
Avoiding “!= 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. This is to avoid a NullPointerException. I find the code ...
796
votes
8answers
36k 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 ...
719
votes
34answers
185k 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 ...
700
votes
21answers
358k 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?
690
votes
40answers
131k 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?
688
votes
22answers
378k views
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 ...
661
votes
9answers
49k views
Why is char[] preferred over String for passwords?
In Swing, the password field has a getPassword() (returns char[]) method instead of the usual getText() (returns String) method. Similarly, I have come across a suggestion not to use Strings to handle ...
661
votes
9answers
89k views
Why does this code print “hello world”?
I came across this piece of code, and found it rather interesting. The following print statement would print "hello world". Could anyone explain this?
System.out.println(randomString(-229985452) + " ...
645
votes
10answers
106k views
Examples of GoF Design Patterns [closed]
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 ...
522
votes
7answers
238k views
How to create ArrayList (ArrayList<T>) from array (T[])
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.
...
519
votes
24answers
192k 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 ...
519
votes
3answers
220k views
How to use java.net.URLConnection to fire and handle HTTP requests?
URLConnection is pretty often asked here and the Oracle tutorial is too concise about it. So
how do I use it to fire and handle HTTP requests?
Are there other hints and best practices on this that ...
499
votes
7answers
514k views
Java: iterate through HashMap [duplicate]
Possible Duplicate:
How do I iterate over each Entry in a Collection Map?
What is the best way to iterate through a HashMap?
499
votes
20answers
276k 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 ...
487
votes
13answers
107k views
What is a serialVersionUID and why should I use it?
Eclipse issues warnings when a serialVersionUID is missing.
The serializable class Foo does not declare a static final
serialVersionUID field of type long
What is serialVersionUID and why is ...
476
votes
30answers
83k 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.
473
votes
6answers
102k 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 ...
442
votes
26answers
360k views
Dealing 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 ...
435
votes
57answers
41k views
Is creating interfaces for almost every class justified 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 ...
409
votes
22answers
490k views
Generating random number in a range with Java
I am trying to generate a random number with Java, but random in a specific range. For example, my range is 5-10, meaning that 5 is the smallest possible value the random number can take, and 10 is ...
393
votes
21answers
47k 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 ...
393
votes
14answers
16k views
Uncatchable ChuckNorrisException
Is it possible to construct a snippet of code in Java that would make a hypothetical java.lang.ChuckNorrisException uncatchable?
Thoughts that came to mind are using for example interceptors or ...
393
votes
28answers
71k 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 ...
375
votes
15answers
201k views
How can I create an executable jar with dependencies using Maven?
I have written a little utility to run from the command line using Java. I want to package it in a single executable jar for distribution (.jar file).
How can I make maven package all dependend jars ...
360
votes
13answers
130k views
Any good graphing packages for Android? [closed]
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 ...
349
votes
59answers
57k views
Check if at least two out of three booleans are true
An interviewer recently asked me this question: given three boolean variables, a, b, and c, return true if at least two out of the three are true.
My solution follows:
boolean atLeastTwo(boolean a, ...
349
votes
23answers
145k views
Overriding equals and hashCode in Java
What issues / pitfalls must be considered when overriding equals and hashCode?
349
votes
9answers
198k 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 ...
348
votes
12answers
154k 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; // ...
333
votes
36answers
334k 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 ...
330
votes
12answers
220k views
In Java, how can I test if an Array contains a certain value?
I have a String[] with values like so:
public static final String[] VALUES = new String[] {"AB","BC","CD","AE"};
Given String s, is there a good way of testing whether VALUES contains s?
327
votes
23answers
70k views
Does finally always execute in Java?
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 failure;
} ...
324
votes
12answers
182k views
How do I iterate over each Entry in a Map?
If I have an object implementing the Map interface in Java and I wish to iterate over every pair contained within it, what is the most efficient way of going through the map?
Will the ordering of ...
324
votes
25answers
12k 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) {
...
323
votes
11answers
185k views
In Java, what's the difference between public, default, protected, and private?
Are there clear rules on when to use each of these when making classes and interfaces and dealing with inheritance?
315
votes
34answers
238k 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?
315
votes
21answers
137k views
“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 ...
306
votes
22answers
246k views
How do I compare strings in Java?
I've been using the == operator in my program to compare all my strings so far.
However, I ran into a bug, changed one of them into .equals() instead, and it fixed the bug.
Is == bad? When should it ...
295
votes
12answers
163k 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?
295
votes
16answers
136k views
Can I add jars to maven 2 build classpath without installing them?
Maven2 is driving me crazy during the experimentation/quick and dirty mock-up phase of development.
I have a pom.xml file that defines the dependencies for the web-app framework I want to use, and ...
294
votes
6answers
118k 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 ...
291
votes
9answers
244k views
Switch Statement with Strings in Java
Why can't I switch on a String in Java?
Is this functionality going to be put into a later Java version?
Can someone point me to an article, or themselves explain why I can't do this, as in, the ...
284
votes
10answers
110k views
Get current stack trace in Java
Something like Environment.StackTrace in .Net.
BTW, Thread.dumpStack() is not what I want - I want to get the stacktrace back, not print it out.
282
votes
4answers
15k views
Why does Math.round(0.49999999999999994) return 1
In the following program you can see that for each value slightly less that .5 is rounded down, except for 0.5.
for (int i = 10; i >= 0; i--) {
long l = Double.doubleToLongBits(i + 0.5);
...
274
votes
28answers
235k views
How to generate a random alpha-numeric string
I've been looking for a simple java algorithm to generate a pseudo-random alpha-numeric string. In my situation it would be used as a unique session/key identifier that would "likely" be unique over ...
266
votes
5answers
105k views
How do I call one constructor from another in Java?
Is it possible to call a constructor from another (within the same class, not from a subclass)? If yes how? And what could be the best way to call another constructor (if there are several ways to do ...
262
votes
20answers
258k views
Generate MD5 hash in Java [duplicate]
Possible Duplicate:
Getting a File’s MD5 Checksum in Java
Is there any method to generate MD5 hash of a string in Java?
257
votes
20answers
231k views
How to call SOAP web service in 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 ...
