- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java program to find whether the given string is empty or null
The isEmpty() method of the String class returns true if the length of the current string is 0.
Example
import java.util.Scanner; public class StringEmptyOrNull { public static void main(String[] args) { System.out.println("Enter a string value ::"); Scanner sc = new Scanner(System.in); String str = sc.nextLine(); if(str.isEmpty()&& str==null ){ System.out.println("Given string is empty or null"); }else{ System.out.println("Given string is not empty or null"); } } }
Output 1
Enter a string value :: Hi welcome to tutorialspoint Given string is not empty or null
Output 2
Enter a string value :: Given string is empty or null
- Related Articles
- Java Program to Check if a String is Empty or Null
- Golang program to check if a string is empty or null
- How to test String is null or empty?
- Check if a String is empty ("") or null in Java
- Golang Program to check the given string is empty or not
- Check if a String is whitespace, empty ("") or null in Java
- Java program to check whether a given string is Heterogram or not
- Java program to find whether given number is even or odd
- Java program to find whether given character is vowel or consonant
- Check whether a field is empty or null in MySQL?
- Java program to find whether the given character is an alphabet or not
- Java Program to Check Whether the Given String is Pangram
- Checking for Null or Empty or White Space Only String in Java.
- Java program to print whether the given string is a palindrome
- Java Program to check if a string is empty or not

Advertisements