码迷,mamicode.com
首页 > 其他好文 > 详细

网络爬虫

时间:2015-04-30 08:59:12      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:网络爬虫   邮件   

/*网络爬虫--爬邮件*/
import java.io.*;
import java.util.regex.*;

class Main {

    public static void main(String[] args) throws Exception {
        getMails();
    }

    public static void getMails() throws Exception {

        BufferedReader bufr = new BufferedReader(new FileReader("mail.txt"));
        String line = null;
        String mailreg = "\\w+@\\w+(\\.\\w+)+";
        Pattern p = Pattern.compile(mailreg);

        while((line=bufr.readLine())!=null) {
            Matcher m = p.matcher(line);
            while(m.find())
                System.out.println(m.group());
        }
    }
}

网络爬虫

标签:网络爬虫   邮件   

原文地址:http://blog.csdn.net/sjtu_chenchen/article/details/45373825

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!