复制代码代码如下 :
importer java.io.BufferedReader ;
importer java.io.IOException ;
importer java.io.InputStreamReader ;
importer java.net.URL ;
importer java.text.SimpleDateFormat ;
importer java.util.Date ;
importer java.util.Timer ;
importer java.util.TimerTask ;
la classe publique GetYinInfo étend TimerTask {
private void getCOMEXInfo() lance IOException{
Chaîne res = "" ;
SimpleDateFormat dateformat=new SimpleDateFormat("HH:mm:ss");
Chaîne df=dateformat.format(new Date());
URL url = nouvelle URL("//www.VeVB.COmI");
java.net.HttpURLConnection conn = (java.net.HttpURLConnection) url.openConnection();
conn.connect();
BufferedReader bf = nouveau BufferedReader (nouveau InputStreamReader (
conn.getInputStream(), "GBK"));
Ligne de ficelle ;
while ((line = bf.readLine()) != null) {
res += ligne ;
}
Chaîne AGTD[]=res.split(",");
Chaîne re[]=AGTD[0].split(""");
System.out.println("COMEX "+df+":"+re[1]);
bf.close();
}
private void getTDInfo() lance IOException{
Chaîne res = "" ;
SimpleDateFormat dateformat=new SimpleDateFormat("HH:mm:ss");
Chaîne df=dateformat.format(new Date());
URL url = nouvelle URL(//www.VeVB.COm);
java.net.HttpURLConnection conn = (java.net.HttpURLConnection) url.openConnection();
conn.connect();
BufferedReader bf = nouveau BufferedReader (nouveau InputStreamReader (
conn.getInputStream(), "GBK"));
Ligne de ficelle ;
while ((line = bf.readLine()) != null) {
res += ligne ;
}
Chaîne AGTD[]=res.split(",");
Chaîne re[]=AGTD[0].split(""");
System.out.println("AG "+df+":"+re[1]);
bf.close();
}
@Outrepasser
public void run() {
essayer {
getCOMEXInfo();
getTDInfo();
System.out.println("--------------------------------------------------------- --");
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* @param arguments
*/
public static void main (String[] arguments) {
Minuterie timer = new Timer();
TimerTask t1 = new GetYinInfo();
//1000毫秒后,每隔1000毫秒运行一次t1任务
timer.schedule(t1,1000,5000);
/*essayer {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
timer.cancel();*/
}
}