Commit f67a402c by zhiwei

添加使用说明

parent 4f5be1c7
# 链接转发原创验证及链接删除验证
1.根据链接判断此篇文章是否删除
2.根据链接及来源验证文章是否为原创及验证文章所属频道
#### 版本
- [2017年12月26日10:46:00]
#### source_forward使用说明
Download the latest JAR or grab via Maven:
<dependency>
<groupId>com.zhiwei</groupId>
<artifactId>source_forward</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
-----------------原创转发验证Example--------------------
通过读取文件获取相应的链接及文件信息,文件中必须包含"来源"列
Map<String,Map<String,Object>> dataMap = ReadMediaData.getUrl(dataList);
dataMap的key为文章链接url
//添加来源到自定义来源列表
SourceData.addUserSource(source);
//开始验证
dataMap = SourceForward.getSourceForward(dataMap);
-----------------链接是否删除验证Example--------------------------------------
//通过读取文件获取相应的链接及文件信息
Map<String,Map<String,Object>> dataMap = ReadMediaData.getUrlLive(dataList);
dataMap的key为文章链接url
//开始验证
dataMap = URLLive.verificationURLLive(dataMap);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment