复代码代码如下:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
java.net.URL 가져오기;
import java.text.SimpleDateFormat;
java.util.Date 가져오기;
java.util.Timer 가져오기;
java.util.TimerTask 가져오기;
공개 클래스 GetYinInfo는 TimerTask {를 확장합니다.
private void getCOMEXInfo()가 IOException을 발생시킵니다.
문자열 res = "";
SimpleDateFormat dateformat=new SimpleDateFormat("HH:mm:ss");
String df=dateformat.format(new Date());
URL url = 새 URL("//www.VeVB.COmI");
java.net.HttpURLConnection conn = (java.net.HttpURLConnection) url.openConnection();
conn.connect();
BufferedReader bf = 새로운 BufferedReader(새 InputStreamReader(
conn.getInputStream(), "GBK"));
스트링라인;
while ((line = bf.readLine()) != null) {
입술 += 라인;
}
String AGTD[]=res.split(",");
String re[]=AGTD[0].split(""");
System.out.println("COMEX "+df+":"+re[1]);
bf.close();
}
private void getTDInfo()가 IOException을 발생시킵니다.{
문자열 res = "";
SimpleDateFormat dateformat=new SimpleDateFormat("HH:mm:ss");
String df=dateformat.format(new Date());
URL url = 새 URL(//www.VeVB.COm);
java.net.HttpURLConnection conn = (java.net.HttpURLConnection) url.openConnection();
conn.connect();
BufferedReader bf = 새로운 BufferedReader(새 InputStreamReader(
conn.getInputStream(), "GBK"));
스트링라인;
while ((line = bf.readLine()) != null) {
입술 += 라인;
}
String AGTD[]=res.split(",");
String re[]=AGTD[0].split(""");
System.out.println("AG "+df+":"+re[1]);
bf.close();
}
@보수
공개 무효 실행() {
노력하다 {
getCOMEXInfo();
getTDInfo();
System.out.println("------------------ --");
} 잡기(IOException e) {
e.printStackTrace();
}
}
/**
* @param 인수
*/
공개 정적 무효 메인(String[] args) {
타이머 타이머 = new Timer();
TimerTask t1 = new GetYinInfo();
//1000毫秒后,每隔1000毫秒运行一次t1任务
타이머.일정(t1,1000,5000);
/*노력하다 {
Thread.sleep(10000);
} 잡기(InterruptedException e) {
e.printStackTrace();
}
타이머.취소();*/
}
}