...
|
...
|
@@ -5,6 +5,7 @@ |
|
|
|
|
|
package com.airport;
|
|
|
|
|
|
import com.airport.core.AgentSender;
|
|
|
import com.airport.core.IMFReader;
|
|
|
import com.airport.core.IMFSender;
|
|
|
import com.airport.util.ConfigUtils;
|
...
|
...
|
@@ -14,12 +15,15 @@ import com.caac.imf.api.IMFClientFactory; |
|
|
import java.util.Timer;
|
|
|
import org.apache.log4j.Logger;
|
|
|
import org.apache.log4j.PropertyConfigurator;
|
|
|
import sun.management.Agent;
|
|
|
|
|
|
public class Main {
|
|
|
private static final Logger logger = Logger.getLogger(Main.class);
|
|
|
public static boolean LOGIN_OK = false;
|
|
|
public static boolean isSuc = true;
|
|
|
public static IMFClient client = null;
|
|
|
|
|
|
|
|
|
public Main() {
|
|
|
}
|
|
|
|
...
|
...
|
@@ -40,11 +44,16 @@ public class Main { |
|
|
loginIMF(client, ConfigUtils.IMF_USERNAME, ConfigUtils.IMF_PASSWORD, "config/imf_config.properties");
|
|
|
if (LOGIN_OK && client != null) {
|
|
|
logger.info("start run Timer,client hasocde=" + client.hashCode());
|
|
|
|
|
|
//代理人发送程序
|
|
|
// AgentSender send = new AgentSender(client);
|
|
|
// send.start();
|
|
|
|
|
|
//数据仓库给九州的发送程序
|
|
|
Timer timer = new Timer();
|
|
|
// SendMessageTask sender = new SendMessageTask(client, "data/fid_index.txt");
|
|
|
IMFSender imfSender = new IMFSender(client,"data/fid_index.txt");
|
|
|
// timer.schedule(sender, 30000L, 1200000L);
|
|
|
timer.schedule(imfSender,30000L,1200000L);
|
|
|
IMFSender CangKu2Jiuzhou = new IMFSender(client,"data/fid_index.txt");
|
|
|
timer.schedule(CangKu2Jiuzhou, 30000L, 1200000L);
|
|
|
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
@@ -83,6 +92,7 @@ public class Main { |
|
|
if (!LOGIN_OK) {
|
|
|
logger.info("多次尝试登录失败,退出登陆");
|
|
|
client.disconnect();
|
|
|
isSuc =false;
|
|
|
System.exit(-1);
|
|
|
}
|
|
|
}
|
...
|
...
|
|