Java 네이티브 IP 및 MAC 주소 세부 정보 가져오기
일부 시스템에는 가상 네트워크 카드가 많기 때문에 IP 주소를 가져올 때 의외의 문제가 발생할 수 있으므로 검증이 필요합니다.
// mac
public static String getMacAddress() {
try {
Enumeration<NetworkInterface> allNetInterfaces = NetworkInterface.getNetworkInterfaces();
byte[] mac = null;
while (allNetInterfaces.hasMoreElements()) {
NetworkInterface netInterface = (NetworkInterface) allNetInterfaces.nextElement();
if (netInterface.isLoopback() || netInterface.isVirtual() || !netInterface.isUp()) {
continue;
} else {
mac = netInterface.getHardwareAddress();
if (mac != null) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < mac.length; i++) {
sb.append(String.format("%02X%s", mac[i], (i < mac.length - 1) ? "-" : ""));
}
if (sb.length() > 0) {
return sb.toString();
}
}
}
}
} catch (Exception e) {
_logger.error("MAC ", e);
}
return "";
}
// ip
public static String getIpAddress() {
try {
Enumeration<NetworkInterface> allNetInterfaces = NetworkInterface.getNetworkInterfaces();
InetAddress ip = null;
while (allNetInterfaces.hasMoreElements()) {
NetworkInterface netInterface = (NetworkInterface) allNetInterfaces.nextElement();
if (netInterface.isLoopback() || netInterface.isVirtual() || !netInterface.isUp()) {
continue;
} else {
Enumeration<InetAddress> addresses = netInterface.getInetAddresses();
while (addresses.hasMoreElements()) {
ip = addresses.nextElement();
if (ip != null && ip instanceof Inet4Address) {
return ip.getHostAddress();
}
}
}
}
} catch (Exception e) {
_logger.error("IP ", e);
}
return "";
}
이상의 코드 중netInterface.isLoopback() || netInterface.isVirtual() || !netInterface.isUp()
비물리적 카드나 쓸모없는 인터넷을 잘 필터링한 다음 인터넷의 IPV4 주소를 찾으면 된다.
여기까지 말하자면 또 몇 가지 자주 사용하는 것이 있다.
1. 현재 기계의 운영체제 가져오기
public final static String WIN_OS = "WINDOWS";
public final static String MAC_OS = "MAC";
public final static String LINUX_OS = "LINUX";
public final static String OTHER_OS = "OTHER";
public static String getOS() {
if (SystemUtils.IS_OS_WINDOWS){
return WIN_OS;
}
if (SystemUtils.IS_OS_MAC || SystemUtils.IS_OS_MAC_OSX){
return MAC_OS;
}
if (SystemUtils.IS_OS_UNIX){
return LINUX_OS;
}
return OTHER_OS;
}
2. HTTP 액세스 에이전트 설정
/**
* http
*/
public static void setHttpProxy() {
Properties prop = System.getProperties();
// http
prop.setProperty("http.proxyHost", HTTP_PROXY_HOST);
// http
prop.setProperty("http.proxyPort", HTTP_PROXY_PORT);
// , * , |
prop.setProperty("http.nonProxyHosts", RemoteConfig.PROXT_FILTER_DOMAIN);
}
/**
* http
*/
public static void removeHttpProxy() {
Properties prop = System.getProperties();
prop.remove("http.proxyHost");
prop.remove("http.proxyPort");
prop.remove("http.nonProxyHosts");
}
애플리케이션 시작 시 HTTP 요청에 액세스하기 전에 설정하면 됩니다.물론nonProxyHosts는 설정 없이 모든 HTTP 요청이 프록시됨을 나타냅니다.HTTPS 에이전트의 경우 다음과 같이 설정할 수 있습니다.
System.setProperty("https.proxyHost", "HTTP_PROXY_HOST");
System.setProperty("https.proxyPort", "HTTP_PROXY_PORT");
이상은 Java가 본 컴퓨터의 IP와 MAC를 획득한 실례입니다. 필요한 친구가 참고할 수 있습니다. 본 사이트에 대한 지지에 감사드립니다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.