parent
51b73e3813
commit
0dff0df466
@ -0,0 +1,7 @@
|
|||||||
|
package error;
|
||||||
|
|
||||||
|
public class GExcptInit extends GExcpt {
|
||||||
|
public GExcptInit(String info) {
|
||||||
|
super(info);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,34 @@
|
|||||||
|
package gdms;
|
||||||
|
|
||||||
|
import error.GExcptInit;
|
||||||
|
|
||||||
|
import java.util.*;
|
||||||
|
|
||||||
|
public class GDMS {
|
||||||
|
static Map<String, Date> schedules;
|
||||||
|
static String schedulePath = "";
|
||||||
|
public static void init() throws GExcptInit {
|
||||||
|
initSchedule();
|
||||||
|
Timer timer = new Timer(true);
|
||||||
|
for(Map.Entry<String, Date> schedule:schedules.entrySet()){
|
||||||
|
timer.schedule(getTimerTask(schedule.getKey()),schedule.getValue());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static TimerTask getTimerTask(String s) throws GExcptInit {
|
||||||
|
if(s==""){
|
||||||
|
return new TimerTask() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new GExcptInit("GlobalTimePoint.json error");
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void initSchedule() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"":""
|
||||||
|
}
|
@ -1,18 +0,0 @@
|
|||||||
package gdms;
|
|
||||||
|
|
||||||
public class main {
|
|
||||||
public static void check()throws Exception{
|
|
||||||
checkJson();
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void checkJson() throws Exception{
|
|
||||||
//todo
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void init(){
|
|
||||||
}
|
|
||||||
public static void run() throws Exception {
|
|
||||||
check();
|
|
||||||
init();
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in new issue