Skip to content Skip to sidebar Skip to footer

Null Pointer In Openfileoutput

I'm trying to use openFileOutput from a class which is not Activity class. When I'm writing something following, it gives me null pointer exception- try { Context c

Solution 1:

try this if you are using it in non Activity Class:

in your Activity Class try to create a Context and then pass it to your Class Constructor

in your class get the context in class constructor and in your function (which is going to save the file ) get an extra parameter which is Context . now use yourContext.openFileOutput , the same as this :

publicvoidSaveFileIntoStorage(String xml,Context cn)throws IOException

now it should be ok :)

Solution 2:

You're receiving a null pointer exception because you're setting the Context variable con to null and then referencing it with con.openFileOutput.

Where are you using this code, in an activity?

If this code is in your Activity, just remove the Context variable and call openFileOutput. You can do this because Activity derives from Context. If the code is in another class you should pass a context into the class and use it.

Solution 3:

If you are starting your second class from an Activity, you can pass it your context.

new SecondClass(getBaseContext()).start();

getBaseContext() will return your context, but you should call it from an Activity or equal class.

Post a Comment for "Null Pointer In Openfileoutput"