网络爬虫

import java.io.*;
import java.net.URL;
import java.net.URLConnection;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Mylearn_2 {
        public static void main(String[] args)   {
            
        
            
            
            
     }
        public static void getMail() 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());
                }
                
            }
            bufr.close();
            
        }
        
        public static void getMail_1() throws Exception
        {
            URL url =new URL("http://192.168.1.254:8080//myweb/mail.html");
            
            URLConnection conn = url.openConnection();
            
            BufferedReader bufIn = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            
            String line = null;
            String mailreg = "\\w+@\\w+(\\.\\w+)+";
            
            Pattern p = Pattern.compile(mailreg);
            
            while((line=bufIn.readLine())!=null)
            {
                Matcher m = p.matcher(line);
                while(m.find())
                {
                    System.out.println(m.group());
                }
                
            }
            bufIn.close();
            
            
        }
        
}

毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::毕向东完美撒花:::::::::::::

posted @ 2019-11-21 15:41  蚂蚁雅黑1010  阅读(90)  评论(0编辑  收藏  举报