我有一个java代码,必须每天一次从URL保存图像。我希望将可执行jar文件放在Windows启动文件夹中,以便每次启动Windows和连接到Internet时运行;但是,窗户每天可能会启动一次以上。所以,我希望我的代码检查是否已经运行并保存了今天的图像,它不再运行(保存的图像的名称是壁纸,我不想更改其名称)。我怎样才能做到这一点?谢谢。
public static void main(String[] args) throws Exception {
String imageUrl ="http://imgs.yooz.ir/fc/m/medium-news/0170220/656760513-0.jpg";
String destinationFile = "E:\\Picture\\Wallpaper.jpg";
saveImage(imageUrl, destinationFile);
}
public static void saveImage(String imageUrl, String destinationFile) throws IOException {
URL url = new URL(imageUrl);
byte[] b = new byte[2048];
int length;
try {
InputStream is=url.openStream();
OutputStream os = new FileOutputStream(destinationFile);
while ((length = is.read(b)) != -1) {
os.write(b, 0, length);
}
is.close();
os.close();
}
}catch (UnknownHostException e){
e.printStackTrace();
}
}
答案 0 :(得分:0)
只有当前时间超过目标文件的最后修改时间后24小时,才能下载图像。
答案 1 :(得分:0)
final long dayMilliSec=24*60*60*1000;
final long diffMilliSec=(3*60+30)*60*1000;
File file=new File(location);
long modDay=(file.lastModified()+diffMilliSec)/dayMilliSec;
long currDay=(new Date().getTime()+diffMilliSec)/dayMilliSec;
//int a=(int) Math.ceil(b);
if (currDay==modDay){
System.exit(0);
}