美文网首页
Network Adapter

Network Adapter

作者: 小兵12138 | 来源:发表于2017-09-29 20:00 被阅读0次

    作业要求:

    必做

    1、编程获取网卡信息

    选做

    2、编程实现IPv4相关信息的设置
      3、编程实现功能开关

    本次作业我只完成了必做要求。采用Java语言编程实现,分三步完成,首先用Java语言的GUI功能搭建图形化界面,之后用尝试使用网络接口获得网络适配器的参数,最后把获得的参数整合到搭建的图形化界面中!

    一、搭建图形化界面

    1、首先创建一个图形化界面,运行程序时会弹出一个窗口!

            JFrame f = new JFrame("NIC Information");
            f.setSize(500, 500);
            f.setLocation(350, 200);//设置窗体在屏幕中的位置以及大小
            f.setVisible(true);//设置窗口可见
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//默认关闭窗口
    

    2、窗口设置好了之后,就需要往窗口之中JLabel标签、JButton按钮、JComboBox下拉列表、JTextField文本框。
      以下以JLabel面板为例,

            JLabel Info = new JLabel("网卡基本信息");
            Info.setFont(new Font("仿宋",Font.BOLD,20));
            Info.setForeground(Color.BLUE);
            Info.setBounds(20, 20, 500, 30);
            f.add(Info);
    

    首先创建一个JLabel标签名为Info,添加内容为“网卡基本信息”,然后设置Info的字体,大小,颜色,标签的大小以及在窗口中的位置,最后在窗口中添加标签Info,标签即能够在窗口中显示!
      注意:由于网卡基本信息、IPv4设置和功能开关字体的不同,所以特地使用了setFont()跟setForeground()方法,其他不需要更改颜色、字体的标签不需要使用此方法
      这些组件在JFrame窗口中不使用布局管理器,所有组件都是采用setBound()方法(此方法接收四个参数,分别是左上角的x、y坐标和组件的长、宽)在容器f中定位。不使用布局管理器,需要取消JFrame的布局管理器

            f.setLayout(null);//取消f的布局管理器
    

    其他的组件跟JPanel标签一样,只要注意组件的位置跟大小,即能搭建出界面

    界面.png

    二、获取网络适配器的参数

    首先需要获得网络接口,之后根据相应的网络接口使用相应的方法获得网络参数!

        public static void main(String[] args) {
            Enumeration<NetworkInterface> netInterfaces = null;
            try {
                 // 获得所有网络接口
                netInterfaces = NetworkInterface.getNetworkInterfaces();
                while (netInterfaces.hasMoreElements()) {
                     NetworkInterface ni = netInterfaces.nextElement();
                     System.out.println("DisplayName: " + ni.getDisplayName());
                     System.out.println("Name: " + ni.getName());
                    StringBuffer sb = new StringBuffer("");
                     byte[] mac = ni.getHardwareAddress();
                     // 该interface不存在HardwareAddress,继续下一次循环
                     if (mac == null) {
                        continue;
                     }
                    for(int i=0; i < mac.length; i++) {
                        if(i!=0) {
                            sb.append("-");
                        }
                        //字节转换为整数
                        int temp = mac[i]&0xff;
                        String str = Integer.toHexString(temp);
                        if(str.length()==1) {
                            sb.append("0"+str);
                        }else {
                            sb.append(str);
                        }
                    }
                    String macStr = sb.toString().toUpperCase();
                    System.out.println("物理地址"+macStr);
                }
            } catch (SocketException e) {
                e.printStackTrace();
            }
        }
    

    getName()方法可以获得网络接口名,getDisplayName()方法可以获得相应网络接口的描述信息,getHardwareAddress()方法可以获得相应网络接口的物理地址,这里会先进行判断,没有物理地址的网络接口的就不输出物理接口,同时由于获取的物理地址是一个二进制数组,需要进行一系列的转换才能以字符串的形式输出!
      这里并没有输出IP地址,由于IP不能使用使用网络接口直接获得,所以尝试获得网络参数的时候我就没有获得IP地址,最后将参数整合到图形化界面中,再具体描述。

    接口eth0.png

    三、获取网络适配器的参数

    此时窗口已经创建好了,而且根据接口也能获得一定的网卡参数,最后就是把获取的参数整合到图形化界面,选择相应的网络接口能够点击详细按钮能够弹出相应的网卡描述信息。

                Enumeration<NetworkInterface> netInterfaces = null;
                     // 获得所有网络接口
                    netInterfaces = NetworkInterface.getNetworkInterfaces();
                    while (netInterfaces.hasMoreElements()) {
                         NetworkInterface ni = netInterfaces.nextElement();
                         if(ni.getHardwareAddress()!=null){
                             comboBox.addItem(ni.getName());
                         }
    

    首先将获得的所有网络接口进行判断,没有物理地址的网络接口不进行显示,有物理地址的网络接口把相应的接口名传入下拉列表之中

    Detail.addActionListener(new ActionListener(){
                    public void actionPerformed(ActionEvent e){
                        try {
                            new Information(NetworkInterface.getByName((String) comboBox.getSelectedItem()));
                        } catch (SocketException e1) {
                            // TODO Auto-generated catch block
                            e1.printStackTrace();
                        }
                    }
                });
    

    再给按钮Detail添加监听,NetworkInterface.getByName((String) comboBox.getSelectedItem())方法可以获得当前下拉列表中选中的网络接口的名称,new Information()可以在一个新的类中根据相应选中的网络接口

    public Information(NetworkInterface ni)
    

    新建一个Information类,创建一个构造方法,接收传过来的NetworkInterface ni,在Information类创建一个一个JFrame窗口,添加JLabel标签,把获取的参数添加到标签中

    JLabel Media = new JLabel("媒体状态  . . :"+ (ni.isUp()?"媒体已连接":"媒体已断开连接"));    
            JLabel Desc = new JLabel("描述 . . . . :"+ni.getDisplayName());
            JLabel Mac = new JLabel("物理地址 . . :"+iMac(ni));
    

    物理地址经过上述方法转换得到字符串输出

    Enumeration<InetAddress> is= ni.getInetAddresses();
            InetAddress addr = is.nextElement();
            if(addr instanceof Inet4Address){
                JLabel IP = new JLabel("IPv4 地址 . . :"+ addr.getHostAddress());
    

    IP地址需要通过getHostAddress()方法才能获得,而此方法是InetAddress才有的,然后通过addr instanceof Inet4Address判断是不是虚拟IP地址,然后加以输出。是虚拟IP地址的就不会显示出来!

    List<InterfaceAddress>  list = ni.getInterfaceAddresses();
                Iterator<InterfaceAddress> it = list.iterator();
                InterfaceAddress ia = it.next();
                if(ia.getNetworkPrefixLength()!=0){
                    int mask = ia.getNetworkPrefixLength();
                    StringBuilder maskStr = new StringBuilder();
                    int[] maskIp =new int[4];
                    for(int i = 0;i<maskIp.length;i++){
                        maskIp[i]=(mask>=8)?255:(mask>0?(mask & 0xff):0);
                        mask -=8;
                        maskStr.append(maskIp[i]);
                        if(i<maskIp.length-1){
                            maskStr.append(".");
                        }
                    }
    

    getNetworkPrefixLength()用于获取子网掩码的长度,根据相应的长度更改得出具体的掩码

    Get.gif

    相关文章

      网友评论

          本文标题:Network Adapter

          本文链接:https://www.haomeiwen.com/subject/veibextx.html