To see if a String is empty or null, we should write an if condition by,
- first, checking if the String object is null using the == operator.
- second, checking if the its empty using the isBlank() function from the String class.
import java.util.Arrays;
import java.util.stream.IntStream;
public class Example2 {
public static void main(String[] args) {
String name1 = "";
String name2 = "Sam";
String name3 = null;
String name4 = " ";
//Example 1:
if (name1 == null || name1.isBlank()) {
System.out.println("Name cannot be empty or null!");
} else {
System.out.println("Hello " + name1);
}
//Example 2:
if (name2 == null || name2.isBlank()) {
System.out.println("Name cannot be empty or null!");
} else {
System.out.println("Hello " + name2);
}
//Example 3:
if (name3 == null || name3.isBlank()) {
System.out.println("Name cannot be empty or null!");
} else {
System.out.println("Hello " + name3);
}
//Example 4:
if (name4 == null || name4.isBlank()) {
System.out.println("Name cannot be empty or null!");
} else {
System.out.println("Hello " + name4);
}
}
}
Output:
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:
- macOS R installation steps - MacOS
- How to make a div tag clickable - Html
- Java JDBC Connection with MySQL Driver in VS Code + Troubleshooting - Java
- Java Program: Convert String to Double - Java
- How to Import External Jars to Android Studio Project - Android-Studio
- Remove Possible Data Loss Message from Microsoft Excel - Microsoft
- Free and easy audio video screen recording using Microsoft PowerPoint - Microsoft
- How to add borders to tkinter label text - Python