码迷,mamicode.com
首页 > 编程语言 > 详细

java获取双网卡ip地址

时间:2014-07-22 09:13:35      阅读:399      评论:0      收藏:0      [点我收藏+]

标签:des   java   os   io   2014   for   

package com.et59.License;

import java.net.InterfaceAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.util.Collections;
import java.util.Enumeration;
import java.util.List;
/**
 * 
 * <p>Title: ListNets.java</p>
 * <p>Description: 获取双网卡ip</p>
 * <p>Copyright: 59et Software (c) 2011</p>
 * <p>Company: 点滴工作室</p>
 * @author Liuhh(jxausea@gmail.com)
 * @date 2014-7-18 下午03:52:03
 * @version 2.0
 *
 */
public class ListNets {
	public static void main(String args[]) throws SocketException {
		Enumeration<NetworkInterface> nets = NetworkInterface
				.getNetworkInterfaces();
		for (NetworkInterface netint : Collections.list(nets))
		if (null != netint.getHardwareAddress()) {
			List<InterfaceAddress> list = netint.getInterfaceAddresses();
			for (InterfaceAddress interfaceAddress : list) {
				String localip=interfaceAddress.getAddress().toString();
				System.out.println(localip);
			}
		}
		
	}
	


}



java获取双网卡ip地址,布布扣,bubuko.com

java获取双网卡ip地址

标签:des   java   os   io   2014   for   

原文地址:http://my.oschina.net/liuhaihua/blog/292508

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!