set入值的时候 三目运算符 可以把方法放入
map.put("com_moment", bxprice == null ? null
: bxprice.getCom_deadline() == null ? null : equlsToDate(bxprice.getCom_deadline()));
// 时间格式化
private static String equlsToDate(String str) {SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
Date date = null;
try {
date = dateFormat.parse(str);
} catch (ParseException e) {
e.printStackTrace();
}
return new SimpleDateFormat("yyyy-MM-dd").format(date);
}