首页 > 其他分享 >网站的email地址

网站的email地址

时间:2023-02-06 20:38:24浏览次数:36  
标签:java String 网站 Pattern 地址 io import line email


<span style="font-size:18px;">package cn.itcast.test;

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

//统计某网站的email地址,可以发垃圾邮件
//Spider-- 这种程序蜘蛛程序
public class Demo2 {

public static void main(String[] args) {
try {
BufferedReader br = new BufferedReader(new FileReader("E:\\java_eclipes\\wordspace\\RegExp\\src\\file\\回复:【坐等更新。。。。谁要1__464 。 留Email 】_王爷要休妃吧_百度贴吧.html"));
String line = "";
while((line=br.readLine())!=null){
parse(line);
}

} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}

}

private static void parse(String line) {
Pattern p = Pattern.compile("[\\w[.-]]+@[\\w[.-]]+\\.[\\w]+");
Matcher m = p.matcher(line);
while(m.find()){
System.out.println(m.group());
}
}
}</span>


标签:java,String,网站,Pattern,地址,io,import,line,email
From: https://blog.51cto.com/u_15955675/6040431

相关文章