0
votes
0answers
15 views
Android - NPE in BrowserFrame
I get this exception triggered by users occasionally that I cannot reproduce. Since it's issued from looper I suppose it is result of Handler-type callback. I found similar bug on …
2
votes
6answers
256 views
Avoiding null pointer exceptions in a large c++ code base
I have inherited a large c++ code base and I have a task to avoid any null pointer exceptions that can happen in the code base. Are there are static analysis tools available, I am …
0
votes
1answer
6 views
PreferenceActivity NullPointer Error
I keep getting nullpointer exception when i switch to my preferenceactivity. I have no idea what wrong but i keep getting a error when i load in my preference which is done program …
0
votes
3answers
56 views
Eclipse debugging problem
Hello,
I am facing a problem while debugging in eclipse. I keep getting pop-up
Exception processing async thread queue
java.lang.NullPointerException
Does anyone know …
0
votes
1answer
33 views
Android - WebView dies on resume
I have Activity with some data displayed in WebView that I load with WebView#loadDataWithBaseURL
Then I have/click menu option that fires android.content.Intent.ACTION_SEND
Choose …
-5
votes
8answers
261 views
Impossible null pointer
Hey,
I have a real weird problem. I have 2 classes:
(very important note: this is an example cause I can't paste the original code, I wrote it as text with no compiler)
class B {
…
0
votes
0answers
24 views
Android Layout AutoCompleteTextView NullPointerException Workaround
I'm working in with the Android SDK 2.0 / Galileo / ADT 0.9.4 (latest to date).
Against Android 1.5 API layer.
If I go to the layout editor and add an AutoCompleteTextView the scr …
4
votes
6answers
146 views
Null pointers everywhere because data is suddenly sparse.
Someone designed code that relied on full data; the XML always had every element. The data source is now sending sparse XML; if it would have been empty before, it's missing now. …
62
votes
19answers
13k views
How to avoid “!= null” statements in Java?
I work with java all day long. The most used idiom (code snippet) I'm programing in java, is to test if an object != null before I use it, to avoid a NullPointerException of course …
0
votes
3answers
35 views
NullPointerException when trying to set a jcheckbox
Trying to set it so if a certain condition is met then one of two check-boxes will be checked. However I keep getting a nullpointerexception error.
the code is..
//Set t …
0
votes
3answers
90 views
Strange nullPointerException in Java
I'm writing an app for Java ME, and I need a class for holding some data(PhoneBook). When I'm trying to launch this app, I'm always getting a nullPointerException. I'm calling the …
0
votes
5answers
130 views
Java NullPointerException
I'm writing two classes to handle simple auctions. I have a class ready and working, which handles the operations for a single auction, and now I'm writing another class like an au …
0
votes
4answers
224 views
Spring security - SecurityContext.authentication null in taglib and jsp but ok in controller
Hi all,
I've been struggling with this issue for a little while now. Found several posts about it but none solved my problem. It will probably have something to do with the fact t …
0
votes
1answer
45 views
Android: this.getApplication() returns NULL pointer
I'm running the following line in an Activity, which is within the same application, but in a different package:
AppObject appObj = (AppObject)this.getApplication();
// FYI: AppOb …
0
votes
1answer
58 views
NullPointerException while adding data to the database from online page
Hi All,
I am getting a NullPointerException Exception while adding data from the online JSP page.
The error description is as follows:
javax.transaction.TransactionRolledbackEx …
