Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张浩
/
BrBigDataTest
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
acb24955
...
acb24955c01933015dcbdc3c4c55a25446e253c5
authored
2022-01-18 17:36:13 +0800
by
张浩
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
3d78d6fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
src/main/java/com/bigdata/test/ETLApp.java
src/main/java/com/bigdata/test/ETLApp.java
View file @
acb2495
...
...
@@ -106,6 +106,8 @@ public class ETLApp {
response
=
StringUtil
.
format
(
response
);
if
(
StringUtil
.
isMessyCode
(
response
))
{
response
=
""
;
}
else
{
response
=
response
.
replaceAll
(
"\"nick\":.*,"
,
"\"nick\":\"BigData\","
);
}
if
(
request
!=
null
&&
!
""
.
equals
(
request
))
{
String
[]
requests
=
request
.
split
(
"&"
);
...
...
@@ -124,6 +126,8 @@ public class ETLApp {
biz_data
=
StringUtil
.
format
(
biz_data
);
if
(
StringUtil
.
isMessyCode
(
biz_data
))
{
biz_data
=
""
;
}
else
{
biz_data
=
biz_data
.
replaceAll
(
"\"nick\":.*,"
,
"\"nick\":\"BigData\","
);
}
}
}
...
...
Please
register
or
sign in
to post a comment