java爬虫环境库

package com.thesys.spider.util.http.bean;

import java.util.Random;

/**
 * 环境库
 * 该Bean仅配置偶尔变动的
 * @author Erciyns
 */
public class VbBean {
   

    /**
     * 是否自动转发
     * 例如:HTTP : 301 
     */
    public static final boolean ISREDIRECT = false;

    /**
     * 默认50000/ms
     * 用于大form读取传输。
     * 多用于文件、图片读取等
     */
    public static final String DEFAULT_CHARSET = "UTF-8";

    /**
     * 等待:默认1000/ms
     */
    public static final long SLEEP_FIXEDTIME = 3000;

    /**
     * 默认35000/ms
     * 用于小form读取传输。
     */
    public static final int MIN_TIMEOUT = 55000;

    /**
     * 默认50000/ms
     * 用于大form读取传输。
     * 多用于文件、图片读取等
     */
    public static final int MAX_TIMEO

你可能感兴趣的:(爬虫,java,爬虫)