`

点击率

 
阅读更多
package com.demo.paul;

import java.io.IOException;

public class Flux {
/**
*
* @param exploreUrl
*            IE安装路径
* @param httpUrl
*            请求http地址
* @param num
*            刷新次数
* @param seconds
*            每次刷新时间
*/
public static void flux(String exploreUrl, String httpUrl, int num, int seconds) {
Process p = null;
String s = exploreUrl + " " + httpUrl;
while (num-- > 0) {
try {
p = Runtime.getRuntime().exec(s);
} catch (IOException e1) {
e1.printStackTrace();
}
try {
Thread.sleep(seconds * 1000);// 线程挂起seconds秒
} catch (InterruptedException e1) {
e1.printStackTrace();
}
p.destroy();
}
}
public static void main(String[] args)
{
Flux.flux("C:\\Program Files\\Internet Explorer\\iexplore.exe", "http://home.soufun.com/news/2011-10-11/6058355.htm", 20, 5);
}
}
分享到:
评论
1 楼 yumin511700 2012-05-04  

相关推荐

Global site tag (gtag.js) - Google Analytics