美文网首页
2019-04-25

2019-04-25

作者: 长安_e9aa | 来源:发表于2019-04-25 16:07 被阅读0次

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



    上代码了

    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

          本文链接:https://www.haomeiwen.com/subject/sbyzgqtx.html