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;
} }

返回列表

上一篇:《Genesis-3D开源游戏引擎完整实例教程-2D射击游戏篇03:子弹发射》


下一篇:临界区代码 critical section Locks and critical sections in multiple threads