| Author |
java Collection question
|
Saathvik Reddy
Ranch Hand
Joined: Jun 03, 2005
Posts: 228
|
|
Hi, I have a collection which is like {obj1, null, obj3}. This collection is the result of a database query. when i am trying to access the 2nd object(which is null) i am getting NPE. How can i filter the collection for null values? Thanks in advance.
|
 |
fred rosenberger
lowercase baba
Bartender
Joined: Oct 02, 2003
Posts: 10043
|
|
|
do you want to prevent null objects from going into the collection, or when the object is null, avoid getting the NPE?
|
Never ascribe to malice that which can be adequately explained by stupidity.
|
 |
Minh Tran
Greenhorn
Joined: Jun 03, 2007
Posts: 19
|
|
|
|
SCJP 1.4, SCWCD 1.4<br />email:mobject@gmail.com
|
 |
Saathvik Reddy
Ranch Hand
Joined: Jun 03, 2005
Posts: 228
|
|
|
That was simple! Thanks a lot Minh.
|
 |
 |
|
|
subject: java Collection question
|
|
|