Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wechat
Overview
Overview
Details
Activity
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
chenweiyang
wechat
Commits
6c9f649a
Commit
6c9f649a
authored
Nov 18, 2019
by
zhiwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
处理搜狗微信搜索链接中出现两次https的问题
parent
9159a942
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
pom.xml
+1
-1
src/main/java/com/zhiwei/wechat/search/WechatAritcleSearch.java
+5
-1
No files found.
pom.xml
View file @
6c9f649a
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
com.zhiwei
</groupId>
<groupId>
com.zhiwei
</groupId>
<artifactId>
wechat
</artifactId>
<artifactId>
wechat
</artifactId>
<version>
1.3.
0
-SNAPSHOT
</version>
<version>
1.3.
1
-SNAPSHOT
</version>
<description>
<description>
知微微信采集程序,包含
知微微信采集程序,包含
1.微信历史文章采集
1.微信历史文章采集
...
...
src/main/java/com/zhiwei/wechat/search/WechatAritcleSearch.java
View file @
6c9f649a
...
@@ -300,7 +300,11 @@ public class WechatAritcleSearch {
...
@@ -300,7 +300,11 @@ public class WechatAritcleSearch {
for
(
Element
element
:
elements
)
{
for
(
Element
element
:
elements
)
{
try
{
try
{
title
=
element
.
select
(
"div.txt-box"
).
select
(
"h3"
).
text
();
title
=
element
.
select
(
"div.txt-box"
).
select
(
"h3"
).
text
();
link
=
"https://weixin.sogou.com"
+
element
.
select
(
"div.txt-box"
).
select
(
"h3 >a"
).
attr
(
"href"
);
link
=
element
.
select
(
"div.txt-box"
).
select
(
"h3 >a"
).
attr
(
"href"
);
if
(!
link
.
contains
(
"https"
)){
link
=
"https://weixin.sogou.com"
+
link
;
}
content
=
""
;
content
=
""
;
if
(
element
.
select
(
"p.txt-info"
).
isEmpty
())
{
if
(
element
.
select
(
"p.txt-info"
).
isEmpty
())
{
content
=
element
.
select
(
"p.txt-info"
).
text
();
content
=
element
.
select
(
"p.txt-info"
).
text
();
...
...
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