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 {
    public static boolean isMacEqual(String mac1, String mac2) {
        if (!TextUtils.isEmpty(mac1) && !TextUtils.isEmpty(mac2)) {
            return mac1.replace(":", "").toUpperCase().equals(mac2.replace(":", "").toUpperCase());
        }
        return false;
    }
}