Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
webmagic
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
沈俊林
webmagic
Commits
be8a0388
Commit
be8a0388
authored
Mar 15, 2018
by
shenjunlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
版本升级,异常处理
parent
6db681ba
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
7 deletions
+10
-7
pom.xml
pom.xml
+1
-1
pom.xml
webmagic-core/pom.xml
+1
-1
pom.xml
webmagic-extension/pom.xml
+1
-1
Data5UProxyProvider.java
...java/us/codecraft/webmagic/proxy/Data5UProxyProvider.java
+4
-1
pom.xml
webmagic-samples/pom.xml
+1
-1
pom.xml
webmagic-saxon/pom.xml
+1
-1
pom.xml
webmagic-scripts/pom.xml
+1
-1
No files found.
pom.xml
View file @
be8a0388
...
...
@@ -6,7 +6,7 @@
<version>
7
</version>
</parent>
<groupId>
us.codecraft.duiba
</groupId>
<version>
0.7.
7
-SNAPSHOT
</version>
<version>
0.7.
8
-SNAPSHOT
</version>
<modelVersion>
4.0.0
</modelVersion>
<packaging>
pom
</packaging>
<properties>
...
...
webmagic-core/pom.xml
View file @
be8a0388
...
...
@@ -3,7 +3,7 @@
<parent>
<groupId>
us.codecraft.duiba
</groupId>
<artifactId>
webmagic-parent
</artifactId>
<version>
0.7.
7
-SNAPSHOT
</version>
<version>
0.7.
8
-SNAPSHOT
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
...
...
webmagic-extension/pom.xml
View file @
be8a0388
...
...
@@ -3,7 +3,7 @@
<parent>
<groupId>
us.codecraft.duiba
</groupId>
<artifactId>
webmagic-parent
</artifactId>
<version>
0.7.
7
-SNAPSHOT
</version>
<version>
0.7.
8
-SNAPSHOT
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
...
...
webmagic-extension/src/main/java/us/codecraft/webmagic/proxy/Data5UProxyProvider.java
View file @
be8a0388
...
...
@@ -48,8 +48,11 @@ public class Data5UProxyProvider implements ProxyProvider{
}
//返回结果 221.32.22.54:33084
private
Proxy
getProxyFromData5u
()
throws
IO
Exception
{
private
Proxy
getProxyFromData5u
()
throws
Exception
{
String
result
=
HttpClientUtils
.
doGet
(
data5UApiUrl
);
if
(
StringUtils
.
contains
(
result
,
"false"
))
{
throw
new
Exception
(
"data5U orderId is not correct"
);
}
String
[]
res
=
StringUtils
.
split
(
result
,
"\n"
);
String
[]
ipAndPort
=
StringUtils
.
split
(
res
[
0
],
":"
);
return
new
Proxy
(
ipAndPort
[
0
],
Integer
.
valueOf
(
ipAndPort
[
1
]));
...
...
webmagic-samples/pom.xml
View file @
be8a0388
...
...
@@ -3,7 +3,7 @@
<parent>
<groupId>
us.codecraft.duiba
</groupId>
<artifactId>
webmagic-parent
</artifactId>
<version>
0.7.
7
-SNAPSHOT
</version>
<version>
0.7.
8
-SNAPSHOT
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
...
...
webmagic-saxon/pom.xml
View file @
be8a0388
...
...
@@ -3,7 +3,7 @@
<parent>
<groupId>
us.codecraft.duiba
</groupId>
<artifactId>
webmagic-parent
</artifactId>
<version>
0.7.
7
-SNAPSHOT
</version>
<version>
0.7.
8
-SNAPSHOT
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
...
...
webmagic-scripts/pom.xml
View file @
be8a0388
...
...
@@ -3,7 +3,7 @@
<parent>
<groupId>
us.codecraft.duiba
</groupId>
<artifactId>
webmagic-parent
</artifactId>
<version>
0.7.
7
-SNAPSHOT
</version>
<version>
0.7.
8
-SNAPSHOT
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment