黑马程序员技术交流社区

标题: 如何从网页中爬回邮件 [打印本页]

作者: hrfhwy    时间: 2015-12-15 23:10
标题: 如何从网页中爬回邮件
  1. package day23;

  2. import java.io.BufferedReader;
  3. import java.io.InputStreamReader;
  4. import java.net.URL;
  5. import java.net.URLConnection;
  6. import java.util.regex.Matcher;
  7. import java.util.regex.Pattern;

  8. public class DatagramSocket1 {
  9.         public static void main(String[] args)throws Exception{
  10.                 URL url=new URL("http:\\192.168.1.3:8080\\a.txt");//封装网页
  11.                 String reg="\\w+@\\w+(\\.\\w+)+";
  12.                 Pattern p=Pattern.compile(reg);//将正则表达式编译到模式中
  13.                 URLConnection conn=url.openConnection();
  14.                 BufferedReader br=new BufferedReader(new InputStreamReader(conn.getInputStream()));
  15.                 String line=null;
  16.                 while((line=br.readLine())!=null){
  17.                         Matcher m=p.matcher(line);
  18.                         while(m.find()){
  19.                                 System.out.println(m.group());
  20.                         }
  21.                 }
  22.                
  23.                
  24.                
  25.                
  26.         }

  27. }
复制代码



作者: wangmiaosen    时间: 2015-12-17 00:04
你学的WEb么?为什么我都没听说过




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2