Tagged Questions
The Java exception thrown when an application attempts to use null in a case where an object is required.
361
votes
31answers
150k 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 ...
109
votes
10answers
29k views
Best explanation for Languages without Null
Every so often when programmers are bitching about null errors/exceptions someone asks what we do without null.
I myself have some basic idea of the coolness of option types but I don't have the ...
62
votes
20answers
10k views
IllegalArgumentException or NullPointerException for a null parameter?
I have a simple setter method for a Java property and null is not appropriate for this particular property. I have always been torn, in this situation: should I throw an IllegalArgumentException, or ...
39
votes
7answers
62k views
36
votes
8answers
5k views
Which @NotNull Java annotation should I use?
I'm looking to make my code more readable as well as use tooling like IDE code inspection and/or static code analysis (FindBugs and Sonar) to avoid NullPointerExceptions. Many of the tools seem ...
30
votes
16answers
2k views
Is Catching a Null Pointer Exception a Code Smell?
Recently a co-worker of mine wrote in some code to catch a null pointer exception around an entire method, and return a single result. I pointed out how there could've been any number of reasons for ...
25
votes
3answers
4k views
NullPointerException stack trace not available without debug agent
I have recently found a bug that causes a NullPointerException. The exception is caught and logged using a standard slf4j statement. Abridged code below:
for(Action action : actions.getActions()) {
...
21
votes
10answers
1k views
Is it a bad idea if equals(null) throws NullPointerException instead?
The contract of equals with regards to null, is as follows:
For any non-null reference value x, x.equals(null) should return false.
This is rather peculiar, because if o1 != null and o2 == null, ...
17
votes
7answers
663 views
Why doesn't Java tell you which pointer is null?
I've always wondered why the JVM doesn't tell you which pointer (or more precisely, which variable) is null when a NullPointerException is thrown.
A line number isn't specific enough because the ...
15
votes
4answers
606 views
Is None less evil than null?
In F# its a big deal that they do not have null values and do not want to support it. Still the programmer has to make cases for None similar to C# programmers having to check != null.
Is None really ...
15
votes
5answers
1k views
Why comparing Integer with int can throw NullPointerException in Java?
It was very confusing to me to observe this situation:
Integer i = null;
String str = null;
if (i == null) { //Nothing happens
...
}
if (str == null) { //Nothing happens
}
...
13
votes
4answers
286 views
Catching exceptions thrown from native code running on Android
The project I'm currently working on requires me to code up the android portion of a cross platform program implementation.
A core set of functionality is built and included in my app through ...
13
votes
12answers
2k views
Is it okay to throw NullPointerException programatically?
When there is a post-condition, that return value of a method must not be null, what can be done ?
I could do
assert returnValue != null : "Not acceptable null value";
but assertions could be ...
13
votes
3answers
2k views
Why does String.valueOf(null) throw a NullPointerException?
according to the documentation, the method String.valueOf(Object obj) returns:
if the argument is null, then a string equal to "null"; otherwise, the value of obj.toString() is returned.
But how ...
13
votes
5answers
1k views
Why static fields are not initialized in time?
Somebody tell me:
class MyClass {
private static MyClass myClass = new MyClass();
private static final Object obj = new Object();
public MyClass() {
System.out.println(obj); // will print ...
13
votes
7answers
979 views
Gracefully avoiding NullPointerException in Java
Consider this line:
if (object.getAttribute("someAttr").equals("true")) { // ....
Obviously this line is a potential bug, the attribute might be null and we will get a NullPointerException. So we ...
12
votes
10answers
3k views
NullPointerException in Java with no StackTrace
I've had instances of our Java code catch a NullPointerException, but when I try to log the StackTrace (which basically ends up calling Throwable.printStackTrace() ), all I get is:
...
10
votes
4answers
142 views
What's the difference between opening an app from the applications screen and the recently used apps list? (android
Can anyone tell me what the difference is between opening an app from the applications screen and opening it from that recently used apps list that pops up when you long-press the home button?
I ...
10
votes
5answers
142 views
Java NPE in ternary operator with autoboxing?
I ran across a very weird NPE this morning, and reduced it to a simple example. Is this a JVM bug or correct behavior?
public class Test1 {
class Item {
Integer id = null;
public ...
10
votes
3answers
3k views
Why does int num = Integer.getInteger(“123”) throw NullPointerException?
the following code throws NPE for me:
int num = Integer.getInteger("123");
is my compiler invoking getInteger on null since it's static? that doesn't make any sense!
can someone explain what's ...
10
votes
11answers
2k views
How to trace a NullPointerException in a chain of getters
If I get a NullPointerException in a call like this:
someObject.getSomething().getSomethingElse().
getAnotherThing().getYetAnotherObject().getValue();
I get a rather useless exception text ...
9
votes
6answers
248 views
Is it bad style to use NullPointerException to test for null?
I have some code along the following pattern:
return a().b().c().d().e();
now since every one of those methods could return null, one would usually test for this:
if( (a()!=null) && ...
9
votes
2answers
18k views
Android - How To Override the “Back” button so it doesn't Finish() my Activity?
I currently have an Activity that when it gets displayed a Notification will also get displayed in the Notification bar.
This is so that when the User presses home and the Activity gets pushed to the ...
9
votes
4answers
5k views
Eclipse debugging has dialog box: Exception processing async thread queue java.lang.NullPointerException
I am facing a problem while debugging in Eclipse 3.4.2. I keep getting pop-up
Exception processing async thread queue
java.lang.NullPointerException
Does anyone know what the exact ...
8
votes
8answers
340 views
Java: Clean way of avoiding NullPointerException in equals checks
I have an address object that I want to create an equals method for. I could have made this quite simple by doing something like the following (shortened a bit):
public boolean equals(Object obj)
{
...
7
votes
4answers
491 views
How come invoking a (static) method on a null reference doesn't throw NullPointerException?
I wrote this program in Java
public class Why {
public static void test() {
System.out.println("Passed");
}
public static void main(String[] args) {
Why NULL = null;
NULL.test();
...
6
votes
9answers
191 views
Does it make sense to self check for null in Java [closed]
I often see java SourceCode where a null as value for a method or constructor is not allowed. A Typical implementation of this looks like
public void someMethod(Object someObject){
if(someObject ...
6
votes
1answer
502 views
validate() tree throws NullPointerException on L&F change?
public class TabbedArea extends JTabbedPane {
public void addArea(){
add(component);
final JPanel panel = new JPanel(new BorderLayout());
panel.add(new JLabel(title), ...
6
votes
3answers
333 views
strange Java NullPointerException with autoboxing
Run the following Java code:
boolean b = false;
Double d1 = 0d;
Double d2 = null;
Double d = b ? d1.doubleValue() : d2;
Why is there a NullPointerException?
6
votes
4answers
3k views
Android, NetworkInfo.getTypeName(), NullpointerException
I have an activity which shows some List entries. When I click on a list item my app checks which connection type is available ("WIF" or "MOBILE"), through NetworkInfo.getTypeName(). As soon as I call ...
5
votes
3answers
250 views
Google-guava checkNotNull and IntelliJ IDEA's “may produce java.lang.NullPointerException”
Is there any way to suppress this warning:
MyClass object = null;
/*Some code that 'might' set this object but I know it will*/
Preconditions.checkNotNull(object);
//when ...
5
votes
3answers
2k views
How to return resultset from web service in java
i am writing an application in which i am creating web services. i am creating an operation(method) which retrieves database table values from database table in resultset. Hence we can't return ...
5
votes
2answers
3k views
Problem reloading a jar using URLClassLoader
I need to add plugin functionality to an existing application for certain parts of the application. I want to be able to add a jar at runtime and the application should be able to load a class from ...
5
votes
2answers
252 views
why does this code throw a NullPointerException?
Eventually I got the answer, but it puzzled me for a while.
Why does the following code throws NullPointerException when run?
import java.util.*;
class WhyNullPointerException {
public static ...
5
votes
5answers
846 views
Java List.contains() question
According to the documentation, List.contains can throw NullPointerException in this scenario:
"if the specified element is null and
this list does not support null
elements (optional)."
I ...
5
votes
1answer
259 views
NPE annotation scenarios and static-analysis tools for Java
Here is a number of code snippets that can throw NullPointerException.
01:
public void m1(@Nullable String text) {
System.out.print(text.toLowerCase()); // <-- expect to be reported.
}
02:
...
5
votes
4answers
234 views
Why do I get a NullPointerException when comparing a String with null?
My code is breaking on the following line with a nullpointerexception:
if (stringVariable.equals(null)){
Previous to this statement, I declare the stringVariable and set it to a database field.
...
5
votes
2answers
899 views
“Something wrong here, didn't expect PACKAGE to be resumed” error in andorid LogCat
I have an Android app modeled after the LunarLander example by Google.
I am debugging it on a real device, (Motorola Droid) with Android 2.0.
When the orientation changes, the program crashes on a ...
5
votes
3answers
2k views
Experience with JDK 1.6.x G1 (“Garbage First”)
I'd like to know what are the experiences with G1 garbage collector in newest JDK? I see NullPointerException thrown in my program, although code didn't change and behave correctly in earlier JDKs.
4
votes
3answers
57 views
Best practice for initializing object attributes in OO Languages
This question has a slight emphasis on Java but applies to any OO language.
Is it good practice to initialize class variables in their declarations? It seems obviously so to me. It minimizes the risk ...
4
votes
3answers
137 views
null pointer exception while instantiating content resolver?
In my Android, I am reading the contacts by using content resolver.But content resolver is not getting initialized ,it gives NullPointerException.
I want to use the string arrays in another class and ...
4
votes
4answers
90 views
Using File I/O to traverse directory in windows
I'm writing a program that uses File I/O to traverse through a directory given by the user and then adds the directories to a generic linked list. The program I wrote works perfectly on Ubuntu, but ...
4
votes
5answers
177 views
Should I throw a NullPointerException explicitly or let Java do it for me?
As the title says, I am wondering what the best practice is regarding the throwing of NullPointerExceptions. Specifically, if I have an external library function that can return null in circumstances ...
4
votes
1answer
148 views
SICP sqrt NullPointerException
I've encountered an unexpected NullPointerException while implementing some beginning SICP code in Clojure. In particular, I want to implement the iterative square root procedure from section 1.1.7.
...
4
votes
2answers
561 views
Photo capture Intent causes NullPointerException on Samsung phones only
Photo capture Intent causes NullPointerException on Samsung phones only.
Implementation below.
final Button capture = (Button)findViewById(R.id.capture_button);
capture.setOnClickListener(new ...
4
votes
1answer
237 views
getElementsByTagName results in NullPointerException
consider the following code:
Ti.API.info(doc.getElementsByTagName('myTag'));
Ti.API.info(doc.getElementsByTagName('myTag').item(0));
the xml is valid and consists of a valid element "myTag". the ...
4
votes
5answers
236 views
What should int compareTo() return when the parameter string is null?
It is said that when input parameter is null, compareTo() should throw a NullPointerException. However, I am implementing a class which needs to compare fields with the type of String. These fields ...
4
votes
4answers
112 views
Java : About NullPointerException [closed]
Possible Duplicate:
Java: Why aren't NullPointerExceptions called NullReferenceExceptions ?
Was encouraged by response for my previous question, hence this question. Hope it's cool.
We ...
4
votes
3answers
1k views
J2ME (Java) - Null Pointer Exception caught in Display Class
I'm currently working with MIDlets (I am using a Visual MIDlet) in Netbeans, and a NullPointerException is being thrown but I do not know why.
Note: The exception is not thrown when the program runs ...
4
votes
6answers
1k views
If catching null pointer exception is not a good practice, is catching exception a good one?
I have heard that catching NullPointerException is a bad practice, and i think it is sensibly so. Letting the NullPointerException to propagate to the top would allow the detection of a something ...