A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 吴清源 中级黑马   /  2013-10-5 22:33  /  880 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

利用正则表达式,验证IP地址的合法性
  1. import java.awt.EventQueue;
  2. import java.awt.event.ActionEvent;
  3. import java.awt.event.ActionListener;

  4. import javax.swing.JButton;
  5. import javax.swing.JFrame;
  6. import javax.swing.JLabel;
  7. import javax.swing.JOptionPane;
  8. import javax.swing.JPanel;
  9. import javax.swing.JTextField;
  10. import javax.swing.border.EmptyBorder;

  11. public class CheckIPAddress extends JFrame {
  12.    
  13.     private JPanel contentPane;
  14.     private JTextField ipField;
  15.    
  16.     /**
  17.      * Launch the application.
  18.      */
  19.     public static void main(String[] args) {
  20.         EventQueue.invokeLater(new Runnable() {
  21.             public void run() {
  22.                 try {
  23.                     CheckIPAddress frame = new CheckIPAddress();
  24.                     frame.setVisible(true);
  25.                 } catch (Exception e) {
  26.                     e.printStackTrace();
  27.                 }
  28.             }
  29.         });
  30.     }
  31.    
  32.     public CheckIPAddress() {
  33.         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  34.         setBounds(100, 100, 280, 128);
  35.         contentPane = new JPanel();
  36.         contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
  37.         setContentPane(contentPane);
  38.         contentPane.setLayout(null);
  39.         
  40.         JLabel lblip = new JLabel("\u8BF7\u8F93\u5165IP\u5730\u5740\uFF1A");
  41.         lblip.setBounds(12, 14, 92, 15);
  42.         contentPane.add(lblip);
  43.         
  44.         ipField = new JTextField();
  45.         ipField.setBounds(100, 10, 141, 25);
  46.         contentPane.add(ipField);
  47.         
  48.         JButton button = new JButton("\u9A8C\u8BC1");
  49.         button.addActionListener(new ActionListener() {
  50.             public void actionPerformed(ActionEvent e) {
  51.                 do_button_actionPerformed(e);
  52.             }
  53.         });
  54.         button.setBounds(66, 57, 93, 23);
  55.         contentPane.add(button);
  56.     }
  57.    
  58.     protected void do_button_actionPerformed(ActionEvent e) {
  59.         String text = ipField.getText();// 获取用户输入
  60.         String info = ipCheck(text);// 对输入文本进行IP验证
  61.         JOptionPane.showMessageDialog(null, info);// 用对话框输出验证结果
  62.     }
  63.    
  64.     /**
  65.      * 验证ip是否合法
  66.      *
  67.      * @param text
  68.      *            ip地址
  69.      * @return 验证信息
  70.      */
  71.     public String ipCheck(String text) {
  72.         if (text != null && !text.isEmpty()) {
  73.             // 定义正则表达式
  74.             String regex = "^(1\\d{2}|2[0-4]\\d|25[0-5]|[1-9]\\d|[1-9])\\."
  75.                     + "(1\\d{2}|2[0-4]\\d|25[0-5]|[1-9]\\d|\\d)\\."
  76.                     + "(1\\d{2}|2[0-4]\\d|25[0-5]|[1-9]\\d|\\d)\\."
  77.                     + "(1\\d{2}|2[0-4]\\d|25[0-5]|[1-9]\\d|\\d)$";
  78.             // 判断ip地址是否与正则表达式匹配
  79.             if (text.matches(regex)) {
  80.                 // 返回判断信息
  81.                 return text + "\n是一个合法的IP地址!";
  82.             } else {
  83.                 // 返回判断信息
  84.                 return text + "\n不是一个合法的IP地址!";
  85.             }
  86.         }
  87.         // 返回判断信息
  88.         return "请输入要验证的IP地址!";
  89.     }
  90. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
乔兵 + 1

查看全部评分

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马