Let's take an example where the String we are working with is null.
Example:package org.code2care.examples;
import java.util.function.Predicate;
public class PredicateAndExample {
public static void main(String... args) {
Predicate<String> startsWithU = text -> text.startsWith("U");
String str = null;
boolean result = startsWithU.test(str);
System.out.println("String starts with U? " + result);
}
}
Output:
As NullPointerException is a Runtime Exception, we can handle it using a null check and maybe a logic that works based on your use-case.
package org.code2care.examples;
import java.util.function.Predicate;
public class PredicateAndExample {
public static void main(String... args) {
Predicate<String> startsWithU = text -> text != null && text.startsWith("U");
String str = null;
if (str != null) {
boolean result = startsWithU.test(str);
System.out.println("String starts with U? " + result);
} else {
System.out.println("String is null!");
}
}
}
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Deep Dive into Java 8 Predicate Interface
- Read and Parse XML file using Java DOM Parser [Java Tutorial]
- Java 8 Predicate Functional Interface isEqual() Method Example
- Convert Multidimensional Array toString In Java
- How to read int value using Scanner Class Java
- Spring Boot AI + LLM + Java Code Example
- Write to a File using Java Stream API
- Implementing Bubble Sort Algorithm using Java Program
- How to Fix XmlBeanDefinitionStoreException in Java SpringBoot ApplicationConfig.xml
- YAML Parser using Java Jackson Library Example
- [Fix] java: integer number too large compilation error
- Convert JSON String to Java GSON Object Example
- Read a file using Java 8 Stream
- Java Spring Boot 3 Web Hello World with Gradle in IntelliJ
- Ways Compare Dates in Java Programming with Examples
- Pretty Print JSON String in Java Console Output
- Java JDBC with Join Queries Example
- How to Check For Updates on Windows 11 (Step-by-Step)
- [Fix] java.net.MalformedURLException: unknown protocol
- How to display date and time in GMT Timezone in Java
- Error: LinkageError occurred while loading main class UnsupportedClassVersionError [Eclipse Java]
- How to convert a String to Java 8 Stream of Char?
- RabbitMQ Queue Listener Java Spring Boot Code Example
- 5+ Fibonacci number Series Java Program Examples [ 0 1 1 2 3 ..]
- Handling NullPointerException with Java Predicate
More Posts:
- [jQuery] Uncaught ReferenceError: $ is not defined at index.html:5 - jQuery
- Setting up Zsh Syntax Highlighting - zsh
- What is the doctype for HTML5? - Html
- Failed to find provider info for com.facebook.katana.provider.PlatformProvider - Android
- Know Mac Model Number using Terminal - MacOS
- Python: Traverse List Backwards - Python
- How to Sync Microsoft Teams Calendar with Mac Calendar - Microsoft
- Error 404 Tomcat homepage http://localhost:8080/ not displayed - Tomcat