package com.quartz.test; import java.io.BufferedWriter; import java.io.File; import java.io.FileNotFoundException; import java.io.FileWriter; import java.io.IOException; import java.io.Writer; import java.text.SimpleDateFormat; import java.util.Date; import org.quartz.Job; import org.quartz.JobExecutionContext; import org.quartz.JobExecutionException; public class PreOperationJob implements Job { public void execute(JobExecutionContext arg0) throws JobExecutionException { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); Date date = new Date(); System.out.println("current time is " + sdf.format(date)); Writer writer = null; try { String content = sdf.format(date)+""; File file = new File("D:\\write.txt"); writer = new BufferedWriter(new FileWriter(file,true));//追加写 writer.write(content+"/"); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { try { if (writer != null) { writer.close(); } } catch (IOException e) { e.printStackTrace(); } } } }
最近下载更多
双鱼座程序员7号 LV6
2022年4月23日
atlanta677 LV3
2021年9月29日
长安不测字 LV2
2021年5月18日
hewenhui LV1
2021年4月26日
jibamao LV2
2021年3月18日
yinxiu123 LV4
2020年9月10日
baihongdoudou LV5
2020年8月20日
低调人 LV38
2020年3月24日
2252536772 LV21
2020年3月9日
jzlsunny LV2
2020年2月11日
最近浏览更多
浪里格朗 LV4
2023年1月31日
最代码-宋家辉 LV61
2023年1月29日
Hachi6 LV13
2022年12月4日
1358849392 LV21
2022年11月23日
adminadminsqwqe LV8
2022年8月18日
zerofire LV3
2022年7月1日
双鱼座程序员7号 LV6
2022年4月23日
pxqtsht LV16
2022年3月21日
mugege123 LV6
2021年11月2日
denliv_hui LV13
2021年10月20日