📄 config.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 + -