자바, 이 컴퓨터 내 네트워크 ip, 외부 네트워크 ip 가 져 오기
1716 단어 종합 하 다
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
import org.apache.commons.lang3.StringUtils;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.InetAddress;
import java.net.URL;
/**
* ip
*
* @author lijinzhou
* @since 2019/11/12 17:00
*/
public class IpUtil {
/**
* IP ( )
*
* @author lijinzhou
* @since 2019/11/12 16:39
*/
public static String getHostAddress() {
try {
InetAddress address = InetAddress.getLocalHost();
return address.getHostAddress();
} catch (Exception e) {
return " ";
}
}
/**
* ip
*
* @author lijinzhou
* @since 2019/11/12 17:23
*/
public static String getPublicIp() {
try {
String ip = "http://pv.sohu.com/cityjson?ie=utf-8";
URL url = new URL(ip);
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(urlConnection.getInputStream()));
StringBuilder stringBuilder = new StringBuilder();
String read;
while ((read = in.readLine()) != null) {
stringBuilder.append(read);
}
// stringBuilder
String string = StringUtils.split(stringBuilder.toString(), "=")[1];
JSONObject jsonObject = JSONUtil.parseObj(string);
return jsonObject.get("cip").toString();
} catch (Exception e) {
return " ";
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
nginx 설정 addheader 'Access - Control - Allow - Origin' '*' 에 도 영역 간 문제 가 존재 합 니 다.1. 문제 설명: 전단 도 메 인 A 는 POST 가 백 엔 드 도 메 인 이름 B 의 인 터 페 이 스 를 요청 할 때 크로스 도 메 인 문제 가 존재 하지 않 습 니 다. 해결: 요청 이 성공 하면 HTTP CO...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.