The Java exception thrown when an application attempts to use null in a case where an object is required.

learn more… | top users | synonyms

1
vote
1answer
12 views

invocationtargetexception on view inside listview row

not sure why i am getting this error. here is the error: 06-09 11:09:13.875: E/AndroidRuntime(11336): FATAL EXCEPTION: main 06-09 11:09:13.875: E/AndroidRuntime(11336): ...
0
votes
2answers
22 views

animating a box in android getting a nullpointer exception

So what I'm trying to do is animate a box in android. In my drawView.java I have public void box(int x1, int x2, int y1, int y2) { paint.setColor(Color.WHITE); paint.setStrokeWidth(3); ...
-3
votes
0answers
57 views

NullPointerException with reason

I am getting a null pointer exception, and I have no idea what's the reason of it. Here is my Logcat: 06-18 01:42:06.478: E/AndroidRuntime(1768): FATAL EXCEPTION: main 06-18 01:42:06.478: ...
0
votes
2answers
21 views

NullPointerException in “AWT-EventQueue-0” java.lang

Hey all I am making a flight booking system and having this error when I click a seat for booking "AWT-EventQueue-0" java.lang.NullPointerException I think there is a mistake with my 2D Object ...
0
votes
0answers
13 views

InflateException Error with GoogleMap Fragment

I attempted to follow this tutorial for creating a Google Map: www.youtube.com/watch?v=vQ__ECAEAS0 This is the relevant part of my stack trace, which is throwing an InflateException BinaryXML file ...
1
vote
1answer
29 views

Unable to find icon image using loadIcon() and getProperty()

I have the following statement and it's giving me a Null pointer exception: Icon settingIcon = GUIUtilities.loadIcon( context.getProperty( "sys.setting.icon.small" )); I'm trying to debug ...
0
votes
0answers
26 views

play framework null exception accessing variables

I am testing my play framework application on my pc, and then deploying it to a server my problem is, there are some things that work on my pc, and when I move them to the server, I only get errors, ...
2
votes
0answers
21 views

Null Pointer on ExpandedView for ActionBar Search

I have a SearchView in my ActionBar. I also have a MainFragmentActivity which loads the search in the onCreateOptionsMenu. As I swap Fragments in and out the SearchView works fine - with one ...
-2
votes
0answers
112 views

I'm getting java.lang.NullPointerException and can't figure out why. [closed]

I can't figure out why my code is producing this error at lines 42 and 170 any help would be appreciated. public Game() { super("Gauntlet"); } public static void main(String[] arguments) { ...
1
vote
0answers
37 views

Why Is String XML causing nullpointerexception?

I am trying to pull strings from my strings.xml when users click on an item in a ListView within a viewpager. However, I get a NullPointerException when I try to call a string from the strings.xml. ...
0
votes
1answer
22 views

Nullpointer on expandGroup() in ExpandableListView

I'm working on an ExpandableListView with a connected adapter. Basically I want all groups to be expanded at all times, or atleast upon creation. To solv this am i trying to build a expandAll() method ...
0
votes
1answer
40 views

nullpointerexception and i dont know why

i am getting the following error: 06-09 06:56:24.675: E/AndroidRuntime(1629): java.lang.RuntimeException: Unable to start activity ...
-4
votes
0answers
58 views

Null Pointer exception in date picker

So, I have this error, which says null point exception and as soon as I use the start time date picker, the application crashes. Can anyone please help me, and point me in the right direction and tell ...
1
vote
1answer
37 views

Starting activity from fragment force closes app

I am using ActionBarSherlock to display a couple of fragments. One of the fragments has a button which calls another activity. Clicking the button shows the new activity biefly before the app force ...
0
votes
1answer
29 views

Cell.getNumericCellValue returns null value when reading Excel file

Following is the code to print the sum of the cells in the same row in a loop. When I run, the first loop works fine and I get the value of the sum but during the second loop, it throws the null ...
0
votes
0answers
29 views

Getting NullPointerException on context.getPackageManager() - not sure why

i am trying to get a list of social media clients on a phone in my Android code. i cant see why, but i am getting a nullpounterexception at the init'ing of List Do i need permissions in manifest to ...
1
vote
1answer
55 views

ArrayList error “NullPointerException”

I am changing array into arrayList, with several trials having error “NullPointerException”, the code is simplified as showed below, creating a rectangle when mousePressed. But still with the same ...
0
votes
1answer
35 views

add only contact name and number to android and display in textview at runtime

i am trying to insert the contact name and number to contacts in android and trying view the same in edit view.. like to show you the code.. updated content [by myself]: Go through following link for ...
2
votes
1answer
50 views

java.lang.NullPointerException : displaying records from database in an expandable listview

As the question dictates, i need to display records from database, different record for each child.ie, child 1= record 1 data. child 2 =record 2 data.so and so. i came up with the following code for ...
0
votes
3answers
32 views

Android: Alert Dialog Box crashing

I have an Alert Dialog Box that pops up on the click of a ListView item. The Alert Dialog has a custom layout containing two EditTexts and a TextView. However on calling EditText.getText() on the ...
1
vote
1answer
38 views

NullPointerException when i try open an activity with an Intent

I have made an android app in wich an aactivity opens another.The one that opens is: package com.tendariuspro.oz; import android.app.Activity; import android.content.Intent; import ...
0
votes
0answers
23 views

java.lang.NullPonterException when using Graphics.drawImage(image, x, y, ImageObserver)

I have tried using the ImageIcon way of drawing and image on a panel, I have tried using the ImageIO.read way of drawing, i have build and rebuild multiple projects, and every time i get an error that ...
-5
votes
2answers
49 views

NullPointerException in ChessGame [closed]

this is something that has been bothering me for 3 days, import java.awt.*; import java.awt.event.*; import java.util.*; import javax.swing.*; import static ...
0
votes
1answer
25 views

NullPointerException while returning a JLabel

i seem to have a nullPointerException without any reason, could you please review piece of my code and tell me your opinion? This is the class and the constructor that i am calling on another class in ...
-6
votes
0answers
53 views

Cant figure out this NullPointerException [closed]

I have this problem. I am recieving a java.lang.NullPointerException in the 6th line. WHY??? //... private AppletMainClass app = AppletMainClass.getApplet(); private int startX, startY, startWidth, ...
-3
votes
3answers
58 views

NullPointException on algorithm but don't get NPE on same algorithm in another spot in same class [closed]

In my app, the user has 3 different types of quizzes they can choose. When they choose one of quiz types called "levels", I get a NullPointerException. The order of the algorithm for "levels" is the ...
0
votes
1answer
20 views

CDI @Inject throws NullPointerException on Websphere 8.5

I've deployed an ear on websphere 8.5. the application is composed of an ejb jar and a webapp ( Spring MVC ). Here is my ejb : @Stateless public class DiscrepanciesServiceImpl implements ...
0
votes
0answers
10 views

Holo.NoTitleBar & NullPointerException

I have android application with 3.0 and an activity with tab and swipe. I want to remove the title bar, but when write android:theme="@android:style/Theme.NoTitleBar, and run my application, the log ...
0
votes
2answers
77 views

nullpointer on android intent

Somehow I am getting an nullpointer when trying to execute my intent using startActivity. The only problem is that I am having the same statement in a different class. And that one is executed ...
1
vote
2answers
51 views

RMI Null Pointer?

Sorry if this is a 'duh' question, this is my first time on Stack Overflow. My question is, I keep getting a null pointer exception in my code, and I have no idea how to fix it. ...
0
votes
1answer
30 views

GWT RequestFactory: NullPointerException while retrieving related/nested entities in a request

I get an null pointer exception while retrieving the Value Proxy. The code is as follows. @PersistenceCapable public class Student { //**********Compulsory @PrimaryKey ...
-4
votes
2answers
56 views

Why a NullPointer Exception from adding to a Collection? [duplicate]

I am doing some experimentation on why I'm getting a NullPointerException when I try to add an object to a List. Below is my code, and the StackTrace. Do you know why I'm getting a ...
2
votes
5answers
47 views

Java - Change values of an array by a method in a Class

Here is my code: class Myclass { private static int[] array; public static void main(String[] args) { Myclass m = new Myclass(); for (int i = 0; i < 10; i++) { ...
2
votes
2answers
76 views

Java Array - NullPointerException [closed]

Here is the code (including both classes): import java.util.Scanner; import java.util.Random; public class SortedArray { public int [] myNums; public int sizeOfArray; private int ...
0
votes
1answer
32 views

A-star, H value nullpointer (Java)

I'm working on an A* pathfinding algorithm, and for some reason at a certain point I get a null pointer exception and I have no idea why. The problem occurs at class Astar line 79, which is a simple ...
-3
votes
3answers
67 views

Login Help GUIEditor [closed]

I am trying to create a login screen but when I enter in information into the username and login fields I get a window that gives me a java.lang.NullPointerException error. I want the username and ...
0
votes
1answer
27 views

Null pointer exception when getting image from url to put in imageview

I'm getting my image through an URL and trying to set that to my imageView. But I'm getting a Null Pointer Exception. It is not even entering my asynchtask. Is there something I'm doing wrong or not ...
-1
votes
2answers
80 views

Can't figure out why I'm getting a java.lang.NullPointerException error? [closed]

I've created a unit test for one of my methods, and I can't figure out why I have this error. I am relatively new to Java, and I know the NullPointerException error occurs when one of the variables ...
0
votes
5answers
71 views

null pointer exception just after declaring variable

I have a piece of code, I declare the variable i in a for loop, right after that I tried to print i and it gives me a null pointer exception. I really can't figure why, I just declared the variable.. ...
1
vote
2answers
70 views

Undefined beans with Spring MVC

I'm having trouble understanding Spring MVC. I have the following web.xml : <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
21 views

AutoCompleteTextView NullPointer in Button's OnClickListener

A NullPointerException is thrown when I attempt to extract the text from an AutoCompleteTextView upon hitting a button in a Fragment. This is my code... public class TreeMenuFragment extends ...
0
votes
1answer
31 views

ArrayAdapter NullPointerException in BroadcastReceiver onReceive

I have an activity where I'm using an ArrayAdapter that is declared in the class body itself: ArrayAdapter<String> btDevArrayAdapter = null; in my onCreate() function I do the following: ...
0
votes
1answer
47 views

java.lang.NullPointerException in onRestoreInstanceState(Bundle) for Button

I have created a button in onCreate() method of Activity, and try to change the state of button in onRestoreInstanceState(Bundle) method. I have only one line in this method. @Override protected ...
0
votes
0answers
27 views

LogCat outputs Null Pointer Exceptions, but app isn't crashing

When starting my app, my LogCat fills up with this 06-11 23:51:51.635: E/AndroidRuntime(29950): FATAL EXCEPTION: main 06-11 23:51:51.635: E/AndroidRuntime(29950): java.lang.RuntimeException: Unable ...
0
votes
1answer
23 views

Android SDK MonkeyRunner can't make connection (NullPointerException)

No matter what I do, I can not seem to get MonkeyRunner to connect to the emulator, even though it's running and adb shows that it is available: ...
1
vote
2answers
40 views

ImageIO NullPointerException on server

I am getting a NullPointerException when I run my Java Servlet. Here's my code: out.println("<image>"); int BI_WIDTH = 1000; int BI_HEIGHT = 1400; BufferedImage bImage = new ...
-2
votes
0answers
21 views

Getting NullPointerException while reading data from JTable

private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) { List<String> numdata = new ArrayList<>(); for (int count = 0; count < model.getRowCount(); count++){ ...
0
votes
0answers
35 views

Null pointer exception using Spring ldap

I'm trying to access some datas in a Ldap directory. To do so, I use Spring Ldap. I found out recently there is a magical way to use it, aka the DirContextAdapter. However, when I could browse the ...
0
votes
1answer
14 views

Pointers to structures in IDL structures

I have the following structures defined: point_str={loop_point, x:0d, y:0d} loop_time_str={loop_time_struct, points:ptr_new(/allocate_heap), loop_id:0d, time:0d} ...
0
votes
0answers
24 views

Running TestNG randomly throws a nullpointer exception

I'm trying to run Unit tests in Java EE using TestNG (on Eclipse and IBM Websphere 8.x). I'm using the Apache DeltaSpike CDI Container (http://deltaspike.apache.org/container-control.html). Sometimes ...

1 2 3 4 5 72