源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

java使用TimerTask定时器获取指定网络数据

  • 时间:2022-08-15 06:17 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:java使用TimerTask定时器获取指定网络数据
[u]复制代码[/u] 代码如下:
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.URL; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Timer; import java.util.TimerTask; public class GetYinInfo extends TimerTask { private void getCOMEXInfo() throws IOException{ String res = ""; SimpleDateFormat dateformat=new SimpleDateFormat("HH:mm:ss"); String df=dateformat.format(new Date()); URL url = new URL("http://www.1sucai.cnI"); java.net.HttpURLConnection conn = (java.net.HttpURLConnection) url.openConnection(); conn.connect(); BufferedReader bf = new BufferedReader(new InputStreamReader( conn.getInputStream(), "GBK")); String line; while ((line = bf.readLine()) != null) { res += line; } String AGTD[]=res.split(","); String re[]=AGTD[0].split("""); System.out.println("COMEX "+df+":"+re[1]); bf.close(); } private void getTDInfo() throws IOException{ String res = ""; SimpleDateFormat dateformat=new SimpleDateFormat("HH:mm:ss"); String df=dateformat.format(new Date()); URL url = new URL(http://www.1sucai.cn); java.net.HttpURLConnection conn = (java.net.HttpURLConnection) url.openConnection(); conn.connect(); BufferedReader bf = new BufferedReader(new InputStreamReader( conn.getInputStream(), "GBK")); String line; while ((line = bf.readLine()) != null) { res += line; } String AGTD[]=res.split(","); String re[]=AGTD[0].split("""); System.out.println("AG "+df+":"+re[1]); bf.close(); } @Override public void run() { try { getCOMEXInfo(); getTDInfo(); System.out.println("---------------------------------------------"); } catch (IOException e) { e.printStackTrace(); } } /** * @param args */ public static void main(String[] args) { Timer timer = new Timer(); TimerTask t1 = new GetYinInfo(); //1000毫秒后,每隔1000毫秒运行一次t1任务 timer.schedule(t1,1000,5000); /*try { Thread.sleep(10000); } catch (InterruptedException e) { e.printStackTrace(); } timer.cancel();*/ } }
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部