实现回收站的过期时间
在回收站内防止一段时间之后,自动删除回收站内容。
实现方法:
1、在文件删除一如回收站时,在回收站表内加一个删除时间,存的时候最好用Calendar日历类(我是用Date存入时间不准,可能是因为我使用SimpleDateFormat类转成字符串后再存的原因)。
2、核心是while循环,把所有的文件时间判断完之后,进入等待状态,等待时间结束,再次查询所有的回收站数据,进行下一次遍历,回收站内的数据为空,终止while循环。(我是将这个类放置删除文件的类中,只要进行删除操作,回收站存入数据就回一直运行,直到回收站数据为空,必须要线程等待或休眠,不然可能会内存占满。)
public class FileDelete {
public synchronized void timeDelete() throws ParseException, InterruptedException {
IRecycleService recycleService = Factory.getRecycleServiceImpl();
SimpleDateFormat sim = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
/**
* 使用while进行判定List不为空
* 进去判断时间是否过期
*/
while (true) {
List<Recycle> recycles = recycleService.AllData();
if (recycles.size() == 0) {
break;
}
for (Recycle recycle : recycles) {
long date = sim.parse(recycle.getDeleteData()).getTime();
//测试:两个时间相减的值大于6分钟进行删除操作
if (Math.abs(date - System.currentTimeMillis()) >= 1000 * 60) {
System.out.println("删除!!!");
System.out.println("date--<" + sim.format(sim.parse(recycle.getDeleteData())));
System.out.println("System.currentTimeMillis()--><" + sim.format(System.currentTimeMillis()));
recycleService.OneDelete(recycle);
}
}
this.wait(1000 * 30); //测试:阻塞
}
}
}