package com.peanut.common.utils; import java.util.Map; public class ObjectUtils { public static boolean isNotBlank(Map m, String key){ if(!m.containsKey(key)){ return false; } Object o = m.get(key); if (o==null){ return false; } if(o.toString()==""){ return false; } return true; } }