java 获取本地 mac 地址】的更多相关文章

主要参考:Java获取本机MAC地址/IP地址/主机名 做的更改: 1.我的windows是中文版,程序中获取mac时是按照physical address 获取的,添加上"物理地址": 2.获取到第一个mac之后继续循环buffer,获取其他网卡的mac(无线网卡.以太网卡.虚拟网卡...),但我的机器获取到5个mac地址,不知道为什么,我知道的有一个虚拟网卡,一个以太,一个无限,另外两个不知道哪里来的. 3.中文系统获取bufferedReader 后的编码不正确,添加编码“GBK…
import java.net.*; public class Ipconfig{      public static void main(String[] arguments) throws Exception{          InetAddress ia = InetAddress.getLocalHost();//获取本地IP对象          System.out.println("MAC ......... "+getMACAddress(ia));      }…
1.判断操作系统是Windows还是Linux private static Boolean isLinux() { String os = System.getProperty("os.name"); log.info("os.name: {}", os); return !os.toLowerCase().startsWith("win"); } 2. Linux: 获取MAC地址: private static String getMACA…
import java.net.InetAddress; import java.net.UnknownHostException; public class IpTest { public static void main(String args[]) throws UnknownHostException { String ip = InetAddress.getLocalHost().getHostAddress(); System.out.println(ip); } } 功能是实现了,…
方式一:通过java.net.InetAddress类获取 public void test1() { try { InetAddress addr = InetAddress.getLocalHost(); System.out.println("IP地址:" + addr.getHostAddress() + ",主机名:" + addr.getHostName()); } catch (UnknownHostException e) { e.printStac…
private static String getIpAddress( ){ String ip = ""; Collection<InetAddress> colInetAddress =getAllHostAddress(); for (InetAddress address : colInetAddress) { if (!address.isLoopbackAddress() && address.getHostAddress().contains(…
public static ArrayList<String> getLocalIpAddr() { ArrayList<String> ipList = new ArrayList<String>(); InetAddress[] addrList; try { Enumeration interfaces=NetworkInterface.getNetworkInterfaces(); while(interfaces.hasMoreElements()) { Ne…
java获取本地计算机MAC地址代码如下: public class SocketMac { //将读取的计算机MAC地址字节转化为字符串 public static String transBytesToStr(byte[] bytes){ StringBuffer buffer = new StringBuffer(); for(int i = 0; i < bytes.length; i++){ if(i != 0) buffer.append("-"); //bytes[…
1.获取客户端IP地址 public String getIp(HttpServletRequest request) throws Exception { String ip = request.getHeader("X-Forwarded-For"); if (ip != null) { if (!ip.isEmpty() && !"unKnown".equalsIgnoreCase(ip)) { int index = ip.indexOf(&…
获取本地 ip 地址,mac,通过域名获取对应的 ip, 是网络编程可能遇到的比较常见的操作了,所以总结如下(封装了3个函数), 直接上代码: #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <unistd.h> #include <netdb.h> #include <net/if.h> #inc…