Java代码中如何检测一个字符串不为null及空字符串呢?
下文讲述Java中检测字符串不为空的方法分享,如下所示:
实现思路: 使用null和isEmpty()方法对字符串进行判断即可例:
package com.java265.other; public class test { /* * java265.com 字符串是否为空的示例分享 */ public static void main(String[] args) throws Exception { String s = "java265.com"; if (s != null && !s.isEmpty()) { System.out.println("字符串不为空!"); } else { System.out.println("字符串为空!"); } } }
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。