If a string is empty or not : String « Data Type « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Data Type » StringScreenshots 
If a string is empty or not
    
import org.apache.commons.lang.StringUtils;

public class Main {
  public static void main(String[] args) {
    String one = "";
    String two = "\t\r\n";
    String three = "     ";
    String four = null;
    String five = "four four two";

    // We can use StringUtils class for checking if a string is empty or not
    // using StringUtils.isBlank() method. This method will return true if
    // the tested string is empty, contains white space only or null.
    System.out.println("Is one empty? " + StringUtils.isBlank(one));
    System.out.println("Is two empty? " + StringUtils.isBlank(two));
    System.out.println("Is three empty? " + StringUtils.isBlank(three));
    System.out.println("Is four empty? " + StringUtils.isBlank(four));
    System.out.println("Is five empty? " + StringUtils.isBlank(five));

    // On the other side, the StringUtils.isNotBlank() methods complement
    // the previous method. It will check is a tested string is not empty.
    System.out.println("Is one not empty? " + StringUtils.isNotBlank(one));
    System.out.println("Is two not empty? " + StringUtils.isNotBlank(two));
    System.out.println("Is three not empty? " + StringUtils.isNotBlank(three));
    System.out.println("Is four not empty? " + StringUtils.isNotBlank(four));
    System.out.println("Is five not empty? " + StringUtils.isNotBlank(five));
  }
}
 

   
    
    
    
  
Related examples in the same category
1. Get String hash code
2. To extract Ascii codes from a String
3. LengthOf - show length of things
4. Show string escapesShow string escapes
5. Convert string to char array
6. See if Strings are shared in Java
7. Find text between two strings
8. Count word occurrences in a string
9. Check for an empty string
10. Remove leading and trailing space from String
11. Reverse a string
12. Put quotes around the given String if necessary.
13. Starts With Ignore Case
14. Repeat String
15. implements CharSequence
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.