Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sts网站
Project
Project
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
liyang
sts网站
Commits
f3d0bf6c
Commit
f3d0bf6c
authored
May 13, 2020
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更换IP地址查询接口
parent
ddcabaa6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
11 deletions
+21
-11
HttpUtils.java
.../src/main/java/com/ruoyi/common/utils/http/HttpUtils.java
+1
-1
AddressUtils.java
...src/main/java/com/ruoyi/common/utils/ip/AddressUtils.java
+20
-10
No files found.
ruoyi/src/main/java/com/ruoyi/common/utils/http/HttpUtils.java
View file @
f3d0bf6c
...
@@ -49,7 +49,7 @@ public class HttpUtils
...
@@ -49,7 +49,7 @@ public class HttpUtils
connection
.
setRequestProperty
(
"connection"
,
"Keep-Alive"
);
connection
.
setRequestProperty
(
"connection"
,
"Keep-Alive"
);
connection
.
setRequestProperty
(
"user-agent"
,
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"
);
connection
.
setRequestProperty
(
"user-agent"
,
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"
);
connection
.
connect
();
connection
.
connect
();
in
=
new
BufferedReader
(
new
InputStreamReader
(
connection
.
getInputStream
()));
in
=
new
BufferedReader
(
new
InputStreamReader
(
connection
.
getInputStream
()
,
"GBK"
));
String
line
;
String
line
;
while
((
line
=
in
.
readLine
())
!=
null
)
while
((
line
=
in
.
readLine
())
!=
null
)
{
{
...
...
ruoyi/src/main/java/com/ruoyi/common/utils/ip/AddressUtils.java
View file @
f3d0bf6c
...
@@ -16,11 +16,15 @@ public class AddressUtils
...
@@ -16,11 +16,15 @@ public class AddressUtils
{
{
private
static
final
Logger
log
=
LoggerFactory
.
getLogger
(
AddressUtils
.
class
);
private
static
final
Logger
log
=
LoggerFactory
.
getLogger
(
AddressUtils
.
class
);
public
static
final
String
IP_URL
=
"http://ip.taobao.com/service/getIpInfo.php"
;
// IP地址查询
public
static
final
String
IP_URL
=
"http://whois.pconline.com.cn/ipJson.jsp"
;
// 未知地址
public
static
final
String
UNKNOWN
=
"XX XX"
;
public
static
String
getRealAddressByIP
(
String
ip
)
public
static
String
getRealAddressByIP
(
String
ip
)
{
{
String
address
=
"XX XX"
;
String
address
=
UNKNOWN
;
// 内网不查询
// 内网不查询
if
(
IpUtils
.
internalIp
(
ip
))
if
(
IpUtils
.
internalIp
(
ip
))
{
{
...
@@ -28,17 +32,23 @@ public class AddressUtils
...
@@ -28,17 +32,23 @@ public class AddressUtils
}
}
if
(
RuoYiConfig
.
isAddressEnabled
())
if
(
RuoYiConfig
.
isAddressEnabled
())
{
{
String
rspStr
=
HttpUtils
.
sendPost
(
IP_URL
,
"ip="
+
ip
);
try
if
(
StringUtils
.
isEmpty
(
rspStr
))
{
String
rspStr
=
HttpUtils
.
sendGet
(
IP_URL
,
"ip="
+
ip
+
"&json=true"
);
if
(
StringUtils
.
isEmpty
(
rspStr
))
{
log
.
error
(
"获取地理位置异常 {}"
,
ip
);
return
UNKNOWN
;
}
JSONObject
obj
=
JSONObject
.
parseObject
(
rspStr
);
String
region
=
obj
.
getString
(
"pro"
);
String
city
=
obj
.
getString
(
"city"
);
return
String
.
format
(
"%s %s"
,
region
,
city
);
}
catch
(
Exception
e
)
{
{
log
.
error
(
"获取地理位置异常 {}"
,
ip
);
log
.
error
(
"获取地理位置异常 {}"
,
ip
);
return
address
;
}
}
JSONObject
obj
=
JSONObject
.
parseObject
(
rspStr
);
JSONObject
data
=
obj
.
getObject
(
"data"
,
JSONObject
.
class
);
String
region
=
data
.
getString
(
"region"
);
String
city
=
data
.
getString
(
"city"
);
address
=
region
+
" "
+
city
;
}
}
return
address
;
return
address
;
}
}
...
...
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