admin 管理员组文章数量: 887021
2024年1月11日发(作者:控件名称不可用)
Java代码1. /**
2. * 判断对象是否为空
3. *
4. * @param obj
5. * @return
6. */
7. public static boolean isEmpty(Object obj) {
8. boolean result = true;
9. if (obj == null) {
10. return true;
11. }
12. if (obj instanceof String) {
13. result = (ng().trim().length() == 0) || ng().trim().equals(“null”);
14. } else if (obj instanceof Collection) {
15. result = ((Collection) obj).size() == 0;
16. } else {
17. result = ((obj == null) || (ng().trim().length() < 1)) ? true : false;
18. }
19. return result;
20. }
[java]1. /
2.
判断对象是否为空
3.
4.
@param obj
5. @return
6. */
7. public static boolean isEmpty(Object obj) {
8. boolean result = true;
9. if (obj == null) {
10. return true;
11. }
12. if (obj instanceof String) {
13. result = (ng().trim().length() == 0) || ng().trim().equals(“null”);
14. } else if (obj instanceof Collection) {
15. result = ((Collection) obj).size() == 0;
16. } else {
17. result = ((obj == null) || (ng().trim().length() < 1)) ? true : false;
18. }
19. return result;
20. }
版权声明:本文标题:Jackson第二篇【从JSON字符串中取值】 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/free/1704937063h467241.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论