2019-04-25

2019-04-25  本文已影响0人  长安_e9aa

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



上代码了

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); }

上一篇 下一篇

猜你喜欢

热点阅读