Tuesday, July 31, 2012

[android-developers] NullPointerException

I have an xml file in asset folder, i am trying to parse this file by using sax parser ,but an exception found...(NullPointerException,  / or could not read the file)

AssetManager manager = getAssets();
InputStream is = manager.open("City.xml");
                   
 // xmlR.parse(new InputSource(getAssets().open("City.xml")));
 //  xmlR.parse(new InputSource(getAssets().open("City.xml")));

                xmlR.parse(new InputSource(is));


could you help me please .. thanks in advance

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

No comments:

Post a Comment