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

📄 headercontent.java

📁 是个java写的sipder,非常不错!能承受很大的压力,每天采集的数量在10000万
💻 JAVA
字号:
package cn.yicha.subject.spider.store;

public class HeaderContent {
	String _uri = "";
	String _contentType = "";
	String _contentLen = "";
	//String _date = "";
	String _lmt = "";

	public HeaderContent(String uri, String ct, String cl, String lmt) {
		_uri = uri;
		_contentType = ct;
		_contentLen = cl;
		_lmt = lmt;
	}
	
	public String get_lmt() {
		return _lmt;
	}

	public void set_lmt(String _lmt) {
		this._lmt = _lmt;
	}

	public HeaderContent() {
	}
	
	public String get_contentLen() {
		return _contentLen;
	}

	public void set_contentLen(String len) {
		_contentLen = len;
	}

	public String get_contentType() {
		return _contentType;
	}

	public void set_contentType(String type) {
		_contentType = type;
	}

	public String get_uri() {
		return _uri;
	}

	public void set_uri(String _uri) {
		this._uri = _uri;
	}

//	public String get_date() {
//		return _date;
//	}
//
//	public void set_date(String _date) {
//		this._date = _date;
//	}
}

⌨️ 快捷键说明

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