Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {

    public static synchronized boolean StrIsNull(String str) {
        return null == str || str.trim().length() <= 0 ? true : false;
    }
}