CSDN博客自动访问

声明:本代码仅供学习娱乐。
1、采用线程访问
2、使用线程池和阻塞队列

import java.net.HttpURLConnection;
import java.net.URI;
import java.net.URLConnection;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
 * 
 * 访问csdn博客,增加访问量,纯属娱乐
 * 采用多线程,增加访问速度
 */
public class CSDNBlog {
    public static void main(String[] args) throws Exception {
        for (int i = 0; i < 10; i++) {
            RequestBlogRun conn = new RequestBlogRun();
            Thread t = new Thread(conn);
            t.start();
        }
    }

    /**
     * 构造对博客的请求
     *
     */
    public static class RequestBlogRun implements Runnable {
        public static final String BLOG_URL = "http://blog.csdn.net/jinyingone/article/details/44084051";
        //请求的阻塞队列
        private BlockingQueue<HttpURLConnection> bq = new ArrayBlockingQueue<HttpURLConnection>(2);
        //请求的线程池
        private ExecutorService service = Executors.newFixedThreadPool(3);

        @Override
        public void run() {
            boolean flag = true;
            while (flag) {
                try {
                    URLConnection conn = URI.create(BLOG_URL).toURL().openConnection();
                    conn.setRequestProperty("User-Agent","Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)");
                    conn.setConnectTimeout(20000);
                    HttpURLConnection httpConn = (HttpURLConnection) conn;
                    bq.put(httpConn);
                    service.execute(new ConnBlog(bq));
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }
    }

    /**
     * 
     *实际访问blog
     */
    public static class ConnBlog implements Runnable {
        private static int i = 0;
        private BlockingQueue<HttpURLConnection> bq;
        public ConnBlog(BlockingQueue<HttpURLConnection> bq) {
            this.bq = bq;
        }
        public void run() {
            HttpURLConnection conn = null;
            try {
                conn = bq.take();
                System.out.println("responseCode:"+conn.getResponseCode());
                i++;
                System.out.println("times:" + i);
                if(i > 1000000){
                    //为了提高效率,没有加锁,次数有出入
                    System.out.println("program finshed,will exit!");
                    System.exit(0);
                }
            } catch (Exception e) {
                e.printStackTrace();
            }finally{
                conn.disconnect();
                conn.setDoOutput(false);
                conn=null;
            }
        }
    }
}
  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 6
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值