
正文
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;
}}
返回列表







