1. 程式人生 > >Java提取域名或URL中的一級域名二級域名......

Java提取域名或URL中的一級域名二級域名......

【需求】

    提取全域名中的一級域名資訊、二級域名資訊...... 資訊,當然一級域名就相當於是根域名。

    例如:abc.map.baidu.com 提取出一級域名(根域名): baidu.com 

                                               提取出二級域名: map.baidu.com 

               http://write.blog.csdn.net/  提取出一級域名(根域名): csdn.net

                                               提取出二級域名: blog.csdn.net

                                               提取出三級域名: write.blog.csdn.net

【實現】

    主要是通過正則表示式來解決問題。可以參照上一篇文章(http://blog.csdn.net/kuluzs/article/details/51981212)

// 一級域名提取
private static final String RE_TOP = "(\\w*\\.?){1}\\.(com.cn|net.cn|gov.cn|org\\.nz|org.cn|com|net|org|gov|cc|biz|info|cn|co)$";

// 二級域名提取
private static final String RE_TOP = "(\\w*\\.?){2}\\.(com.cn|net.cn|gov.cn|org\\.nz|org.cn|com|net|org|gov|cc|biz|info|cn|co)$";

// 三級域名提取
private static final String RE_TOP = "(\\w*\\.?){3}\\.(com.cn|net.cn|gov.cn|org\\.nz|org.cn|com|net|org|gov|cc|biz|info|cn|co)$";

......