⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 listnifs.java

📁 it contains the practical programs in our college
💻 JAVA
字号:
import java.io.*;import java.net.*;import java.util.*;import static java.lang.System.out;public class ListNIFs {    public static void main(String args[]) throws SocketException {        Enumeration<NetworkInterface> nets = NetworkInterface.getNetworkInterfaces();                for (NetworkInterface netIf : Collections.list(nets)) {            out.printf("Display name: %s\n", netIf.getDisplayName());            out.printf("Name: %s\n", netIf.getName());            displaySubInterfaces(netIf);            out.printf("\n");        }    }    static void displaySubInterfaces(NetworkInterface netIf) throws SocketException {        Enumeration<NetworkInterface> subIfs = netIf.getSubInterfaces();                for (NetworkInterface subIf : Collections.list(subIfs)) {            out.printf("\tSub Interface Display name: %s\n", subIf.getDisplayName());            out.printf("\tSub Interface Name: %s\n", subIf.getName());        }     }}  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -