博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java获取双网卡ip地址
阅读量:6607 次
发布时间:2019-06-24

本文共 930 字,大约阅读时间需要 3 分钟。

hot3.png

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;/** *  * 

Title: ListNets.java

*

Description: 获取双网卡ip

*

Copyright: 59et Software (c) 2011

*

Company: 点滴工作室

* @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
nets = NetworkInterface .getNetworkInterfaces(); for (NetworkInterface netint : Collections.list(nets)) if (null != netint.getHardwareAddress()) { List
list = netint.getInterfaceAddresses(); for (InterfaceAddress interfaceAddress : list) { String localip=interfaceAddress.getAddress().toString(); System.out.println(localip); } } } }

转载于:https://my.oschina.net/liuhaihua/blog/292508

你可能感兴趣的文章
Linux下Mongodb安装和启动配置
查看>>
2015 成长计划
查看>>
沈阳一饭店凌晨爆燃,燃气报警器时刻预防
查看>>
Redis 与 数据库处理数据的两种模式
查看>>
VUE2中axios的使用方法
查看>>
CS 229 notes Supervised Learning
查看>>
2018.10.27-dtoj-3996-Lesson5!(johnny)
查看>>
DataTable转换成json字符串
查看>>
ubuntu 12.04 安装 redis
查看>>
Sql Server中不常用的表运算符之APPLY(1)
查看>>
【DM642】ICELL Interface—Cells as Algorithm Containers
查看>>
linux所有命令失效的解决办法
查看>>
力扣算法题—085最大矩阵
查看>>
svs 在创建的时候 上传文件夹 bin obj 这些不要提交
查看>>
mysql-用命令导出、导入表结构或数据
查看>>
Tinkphp
查看>>
EntityFrameworkCore 一对一 && 一对多 && 多对多配置
查看>>
How to temporally disable IDE tools (load manually)
查看>>
Vue.js学习 Item4 -- 数据双向绑定
查看>>
几种排序方式的java实现(01:插入排序,冒泡排序,选择排序,快速排序)
查看>>