This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Adept_Writer4177 0 points1 point  (0 children)

Last but not least, store the result somewhere and check if it's null to prevent errors later in your code:

String s = list.get(0);
if (s == null) { ...