Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.text.TextUtils;

public class Main {
    /**
     * Convert String into int ,return 0 if blank string or 
     * @str string to convert
     * */
    public static int getInt(String str) {
        if (TextUtils.isEmpty(str)) {
            return 0;
        } else {
            try {
                return Integer.valueOf(str);
            } catch (Exception e) {
            }
            return 0;
        }
    }
}