import java.util.ArrayList;
import java.util.List;
public class Example {
public static void main(String[] args) {
List<String> stringList = new ArrayList<>();
stringList.add("Java");
stringList.add("Example");
stringList.add("Text");
stringList.add(null);
stringList.forEach(str -> System.out.println(str.substring(1))); //error
}
}
In the above example as you can see I am iterating through a ArrayList of Strings that have a null value as well, so when I use forEach loop over it and iterate and do a subString on the array elements, I will get an NPE (Null Pointer Exception)
Output:Exception in thread "main" java.lang.NullPointerException: Cannot invoke "String.substring(int)" because "str" is null
at Example.lambda$main$0(Example.java:14)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
at Example.main(Example.java:14)
So as a developer you would need to handle the Unchecked NPE!
import java.util.ArrayList;
import java.util.List;
public class Example {
public static void main(String[] args) {
List<String> stringList = new ArrayList<>();
stringList.add("Java");
stringList.add("Example");
stringList.add("Text");
stringList.add(null);
stringList.forEach(str -> {
if(str == null) {
System.out.println("NULL Value");
} else {
System.out.println(str.substring(1));
}
});
}
}

Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!