文章列表
MyEclipse6.5安装SVN插件的三种方法
一、安装方法:
方法一、如果可以上网可在线安装
1. 打开Myeclipse,在菜单栏中选择Help→Software Updates→Find and Install;
2. 选择Search for new features to install,点击Next进入下一步;
3. 点击"Ne ...
今天做了个获取日期的前一天,记录一下,如下:
SimpleDateFormat sdf3 = new SimpleDateFormat("yyyyMMdd");
startDateStr = sdf3.format(startDate);
// 在文件名中显示的终止日期为所选终止日期前一天
Calendar calendar = Calendar.getInstance();
calendar.setTime(endDate);
long endDateTime = calendar.getTimeInMillis() - 1* 24 * 60 ...