package com.together.img;
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;
public class ImageSpider {
public static void main(String[] args) {
try {
BufferedReader br = new BufferedReader(new FileReader("c://date.jsp"));
String line = "";
while((line=br.readLine()) != null) {
System.out.println("line:"+line);
parse(line);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
private static void parse(String line) {
Pattern p = Pattern.compile("[\\[file:///]+\\w+[|/]+\\w+\\.png+");
Matcher m = p.matcher(line);
while(m.find()) {
System.out.println(m.group());
}
}
}