MinerUrl.java 解析页面后存储URL类

MinerUrl.java 解析页面后存储URL类

package com.iteye.injavawetrust.miner;
/**
 * 解析页面后存储URL类
 * @author InJavaWeTrust
 *
 */
public class MinerUrl {
	/**
	 * 当前爬取URL
	 */
	private String url;
	/**
	 * 当前爬取URL深度
	 */
	private int depth;
	public String getUrl() {
		return url;
	}
	public void setUrl(String url) {
		this.url = url;
	}
	public int getDepth() {
		return depth;
	}
	public void setDepth(int depth) {
		this.depth = depth;
	}

}

 

返回列表

 

posted on 2016-03-27 09:42  三少爷的剑123  阅读(119)  评论(0编辑  收藏  举报

导航