⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.java

📁 自己写的一个通过配置的多个代理服务器刷新某网页的一个java应用。可以经过改造应用于自动刷点击量
💻 JAVA
字号:
package com.gootrip.visitor.thread;

import java.util.Map;

public class Config {

	public Config() {
		super();
		// TODO Auto-generated constructor stub
	}

	private String host; // 线路链接地址

	private int minutes; // 访问间隔时间
	
	private int threadcount; // 每次并发线程数量	
	
	private Map proxys; // 代理服务器信息

	public String getHost() {
		return host;
	}

	public void setHost(String host) {
		this.host = host;
	}

	public int getMinutes() {
		return minutes;
	}

	public void setMinutes(int minutes) {
		this.minutes = minutes;
	}

	public int getThreadcount() {
		return threadcount;
	}

	public void setThreadcount(int threadcount) {
		this.threadcount = threadcount;
	}

	public Map getProxys() {
		return proxys;
	}

	public void setProxys(Map proxys) {
		this.proxys = proxys;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -