我一直试图找到一条线并在这个网站上打印出来:http ://www.easports.com/player-hub/360/Its+McDoom
现在它打印出网站上的所有内容,但我找不到我正在寻找的行。我正在尝试打印“H2h 技能点:1053”,但在控制台中找不到类似的内容。
我只希望它打印那 1 行,而不是全部,但我什至找不到它。
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
public class ElectronicArtsStatHub {
/**
* @param args
*/
public static void main (String[] args) throws Exception{
URL oracle = new URL("http://www.easports.com/player-hub/360/Its+McDoom");
URLConnection yc = oracle.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(
yc.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null) {
System.out.println(inputLine);
}
in.close();
}
}