Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a wierd problem. I have the following code:

if (fbIntent.hasExtra("Link")) {
            try{
            postData[0]= fbIntent.getStringExtra("Link");
            } catch (Exception e) {Log.d("fbIntent error",e.getMessage() );} 
        }

fbIntent.hasExtra("Link") is true. So the compiler goes into the if statement. But I am not able to get the string using fbIntent.getStringExtra("Link"). This I know from debugging in eclipse. When I run it, I get :

01-21 14:12:01.030: ERROR/AndroidRuntime(311): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.examples.Kikin/com.examples.Kikin.FacebookLogin}: java.lang.NullPointerException: println needs a message

Please help me.

share|improve this question
You did initialize postData, right? – EboMike Jan 21 '11 at 19:26
yeah. I did. though I did it as null. Does it matter? – Brahadeesh Jan 21 '11 at 19:31
Need to see more of the code. Also, the stack trace should tell you what line exactly the NPE is occuring on. – EboMike Jan 21 '11 at 19:33
will add the stack trace. – Brahadeesh Jan 21 '11 at 19:35
I changes the initialization to arbitrary values. Now it seems to be working. could you tell me why is this? – Brahadeesh Jan 21 '11 at 19:39
show 4 more comments

2 Answers

You need to initialize postData. Try something like String[] postData = new String[1]. Obviously, if you want use postData[1], [2], and [3], you'd need to say new String[4].

share|improve this answer

1) Your current issue is in

Log.d("fbIntent error", e.getMessage());

e.getMessage() may return null, so you get the java.lang.NullPointerException: println needs a message. Use e.toString() instead. Or the best way would be:

Log.e("some tag", "some comment", e);

2) When you fix this, you will be able to see the actual error to go further in fixing your root/real issue. So feel free to update your post with new log data.

share|improve this answer
That was not my issue. Thank you for the information though. I changed all my getMessage() to toString(). – Brahadeesh Jan 21 '11 at 21:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.