|
@@ -1,16 +1,7 @@
|
|
|
package com.ruoyi.common.utils.ip;
|
|
|
|
|
|
-import cn.hutool.core.net.NetUtil;
|
|
|
-import cn.hutool.http.HtmlUtil;
|
|
|
-import cn.hutool.http.HttpUtil;
|
|
|
-import com.ruoyi.common.config.RuoYiConfig;
|
|
|
-import com.ruoyi.common.constant.Constants;
|
|
|
-import com.ruoyi.common.utils.JsonUtils;
|
|
|
-import com.ruoyi.common.utils.StringUtils;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
-import java.util.Map;
|
|
|
-
|
|
|
/**
|
|
|
* 获取地址类
|
|
|
*
|
|
@@ -19,16 +10,16 @@ import java.util.Map;
|
|
|
@Slf4j
|
|
|
public class AddressUtils {
|
|
|
|
|
|
- // IP地址查询
|
|
|
- public static final String IP_URL = "http://whois.pconline.com.cn/ipJson.jsp";
|
|
|
+ // IP地址查询
|
|
|
+ public static final String IP_URL = "http://whois.pconline.com.cn/ipJson.jsp";
|
|
|
|
|
|
- // 未知地址
|
|
|
- public static final String UNKNOWN = "XX XX";
|
|
|
+ // 未知地址
|
|
|
+ public static final String UNKNOWN = "XX XX";
|
|
|
|
|
|
- public static String getRealAddressByIP(String ip) {
|
|
|
- String address = UNKNOWN;
|
|
|
- // 内网不查询
|
|
|
- ip = "0:0:0:0:0:0:0:1".equals(ip) ? "127.0.0.1" : HtmlUtil.cleanHtmlTag(ip);
|
|
|
+ public static String getRealAddressByIP(String ip) {
|
|
|
+ String address = UNKNOWN;
|
|
|
+ // 内网不查询
|
|
|
+ /*ip = "0:0:0:0:0:0:0:1".equals(ip) ? "127.0.0.1" : HtmlUtil.cleanHtmlTag(ip);
|
|
|
if (NetUtil.isInnerIP(ip)) {
|
|
|
return "内网IP";
|
|
|
}
|
|
@@ -49,7 +40,7 @@ public class AddressUtils {
|
|
|
} catch (Exception e) {
|
|
|
log.error("获取地理位置异常 {}", ip);
|
|
|
}
|
|
|
- }
|
|
|
- return address;
|
|
|
- }
|
|
|
+ }*/
|
|
|
+ return address;
|
|
|
+ }
|
|
|
}
|