我想解析一个html并在匹配的模式后得到下一个标记值。 我在做什么 搜索模式并找到它。 现在我希望打印下一个值。
我目前的代码是:
public class Match {
/**
* @param args
*/
public static void main(String[] args) throws IOException {
System.out.println("nothing to Display");
String pattern = "Planned Start<BR>Date";
Pattern regPat = Pattern.compile(pattern);
Matcher matcher = regPat.matcher("");
BufferedReader reader =
new BufferedReader(new FileReader("C:/Users/606787145/Desktop/test.htm"));
String line;
int count=0;
while ((line = reader.readLine()) != null) {
matcher.reset(line);
if (matcher.find()) {
System.out.println(line);
}
}
}