[ Java ] PING 程序的设计与实现

题目要求:

  • 设计并实现程序,实现类似Windows自带PING程序的功能,
  • 可以向制定的域名或IP地址发送Echo请求报文,并根据相应报文显示出Ping的结果。
  • 程序仅支持-t选项即可。

实现效果

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

实现代码

/**
 * @author aowei
 */
public class PingDemo {
    public static void main(String[] args) throws Exception {
        Gui.create();
    }
}

class Gui {
    public static void create() {
        // 创建面板容器
        JPanel panel = new JPanel();
        // 创建基本组件
        JLabel label = new JLabel("请输入网址或 ip 地址:");
        JTextField textField = new JTextField(25);
        JTextArea textArea = new JTextArea(13, 44);
        textArea.setLineWrap(true);
        JButton btn = new JButton("Ping");
        // 将组件添加到面板
        panel.add(label);
        panel.add(textField);
        panel.add(btn);
        panel.add(textArea);

        // 创建一个顶层容器(窗口)
        JFrame jf = new JFrame("PING 程序的设计与实现");
        // 把 面板容器 作为窗口的内容面板 设置到 窗口
        jf.setContentPane(panel);
        // 设置窗口大小
        jf.setSize(550, 320);
        // 把窗口位置设置到屏幕中心
        jf.setLocationRelativeTo(null);
        // 当点击窗口的关闭按钮时退出程序(没有这一句,程序不会退出)
        jf.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        // 禁用最大化窗口
        jf.setResizable(false);
        // 显示面板
        jf.setVisible(true);


        //监听按钮
        btn.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                String ip = textField.getText();
                textArea.setText(null);
                System.out.println("ip 地址:" + ip);
                int index = ip.trim().indexOf(" ");
                String command = "ping " + ip;
                if (index != -1) {
                    String ipAddress = ip.substring(0, index);
                    String param = ip.substring(index + 1);
                    command = "ping " + ipAddress + " " + param;
                }
                String line = null;

                try {
                    Process pro = Runtime.getRuntime().exec(command);
                    BufferedReader buf = new BufferedReader(new InputStreamReader(
                            pro.getInputStream()));
                    while ((line = buf.readLine()) != null) {
                        textArea.append(line + "\n");
                        textArea.paintImmediately(textArea.getBounds());
                        System.out.println(line);
                    }
                } catch (Exception ex) {
                    System.out.println(ex.getMessage());
                }

            }
        });
    }
}

参考链接


在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_43901693/article/details/107197443
今日推荐