码迷,mamicode.com
首页 > 编程语言 > 详细

java获取qq邮箱的网络爬虫

时间:2014-11-19 12:17:39      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   os   sp   java   on   div   

 

代码如下

package Game;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Main {
    public static void main(String[] args) throws IOException {
        File file=new File("D:\\index.html");
        BufferedReader buf=new BufferedReader(new InputStreamReader(new FileInputStream(file)));
        String str=null;
        String regex="(.)+@(.)+(\\.[a-z]+){1,}";
        Pattern pattern=Pattern.compile(regex);
        while((str=buf.readLine())!=null)
        {
            Matcher matcher=pattern.matcher(str);
            while(matcher.find())
            System.out.println(matcher.group());
        }
        buf.close();

    }
}

  详细说明:http://java.662p.com/thread-3731-1-1.html

java获取qq邮箱的网络爬虫

标签:blog   http   io   ar   os   sp   java   on   div   

原文地址:http://www.cnblogs.com/liniuzen/p/4107842.html

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