Board logo

标题: [网络连接] 求:用批处理给自己的网页刷流量怎么写? [打印本页]

作者: mtv0006    时间: 2008-3-24 16:22     标题: 求:用批处理给自己的网页刷流量怎么写?

<P>要求1. 定时自动运行</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2.刷网页的时间间隔10秒钟</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3.如果能让它在后台运行更好些,不影响桌面其他出现运行。</P>
<P>&nbsp;</P>
<P>谁能帮我写一个吗?谢谢!</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </P>
作者: foxJL    时间: 2008-3-24 18:04

纯P无法做到后台运行,纯P办法是打网指定的网页过10秒后自动关闭然后再打开,如此循环.
作者: biggerms    时间: 2008-11-29 12:43

我这里有个。呵呵。自己写的。看看吧。也许对你有用
需要的话。加我QQ 。来者请注明  批处理
作者: Batcher    时间: 2008-11-29 14:06     标题: 回复 3楼 的帖子

为何舍不得直接把代码贴出来给大家分享一下呢?
作者: byl2005    时间: 2009-4-2 11:09

严重支持巡查的观点.
作者: everest79    时间: 2009-4-2 18:55

后台的话用VBS好一点,批处理要调用MSHTA,可以隐藏不了
  1. Dim ieobj
  2. Set ieobj=CreateObject("InternetExplorer.Application")
  3. ieobj.Navigate "www.google.com"
  4. ieobj.Visible=1
  5. do
  6. Wscript.Sleep 10000
  7. ieobj.Document.location.Reload(true)
  8. loop
复制代码





欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2