Back to project page SimpleReader.
The source code is released under:
Apache License
If you think the Android project SimpleReader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.dreamteam.app.utils; public class StringUtils { public static boolean isEmpty(String str) { if(str == null || str.equals("")) { return true; } return false; } }