博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
每一个1号删除上个月的数据
阅读量:5760 次
发布时间:2019-06-18

本文共 737 字,大约阅读时间需要 2 分钟。

hot3.png

// 每一个1号删除上个月的数据	public String calculateDay() {		String dd = "";		DateFormat dateFormat = new SimpleDateFormat("yyyy-MM");		String nowdayTime = dateFormat.format(new Date());		try {			dateFormat.parse(nowdayTime);		} catch (ParseException e) {			e.printStackTrace();		}		String[] timStrings = nowdayTime.split("-");		String nowYear = timStrings[0];		String nowMath = timStrings[1];		if (nowMath.equals("01")) {			int lastYear = Integer.parseInt(nowYear) - 1;			dd = lastYear + "";		} else {			int lastMath = Integer.parseInt(nowMath) - 1;			String lastMath_ = String.format("%02d", lastMath);			String s = nowYear + "-" + lastMath_;			dd = s;		}		System.err.println(dd);		return dd;	}

转载于:https://my.oschina.net/liusonghuang/blog/1921004

你可能感兴趣的文章
SQLAlchemy使用说明之ORM
查看>>
多重影分身:一套代码如何生成多个小程序?
查看>>
Oracle将NetBeans交给了Apache基金会
查看>>
1100名达摩院“扫地僧”加持,阿里云的下一个十年
查看>>
填坑记:Uncaught RangeError: Maximum call stack size exceeded
查看>>
《中国人工智能学会通讯》——11.60 安全隐私感知的移动 App 推荐方法
查看>>
SpringCloud之消息总线(Spring Cloud Bus)(八)
查看>>
DLA实现跨地域、跨实例的多AnalyticDB读写访问
查看>>
(十)Java B2B2C o2o多用户商城 springcloud架构 高可用的服务注册中心
查看>>
Mvp官方示例
查看>>
如何在网站中加入百度统计
查看>>
推荐系统架构设计与实现
查看>>
根分区满了之后的几种处理方法
查看>>
XGBoost与LightGBM对比
查看>>
Future和FutureTask
查看>>
highCharts图标-线性图标实例
查看>>
采用Cloudera-Manager安装CDH时,采用内嵌数据库各数据库用户密码的保存位置
查看>>
嵌入式embeddedjetty练习
查看>>
解决ListView,GridView,Gallery的Adapter中的getView多次调...
查看>>
Hack A10 devices
查看>>