Originally Posted by
rajesh3006
I am getting an null pointer exception. i need to ignore the exception and the application should continue without hanging. help me.
names contains the list of data. if some data is not there an exception is thrown..
Hello rajesh3006!
You can place the code that may throw the exception in a
try...catch block. You should read the
java tutorials for exception handling.
I don't know what you want to do, but ignoring an exception doesn't seem best practice for me.
Hope it helps.