2019-04-25

今天要筛选一些数据 比如取当天的数据 或者前天 大前天等等等 。。。记录一下  菜鸡下蛋



上代码了

public String getBeforeDate(int n) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd"); Date date = new Date(); Calendar calendar = Calendar.getInstance(); calendar.setTime(date); calendar.add(Calendar.DAY_OF_MONTH, -n); date = calendar.getTime(); return sdf.format(date); }

你可能感兴趣的:(2019-04-25)