我想从直播中获取源代码。我用下面的代码阅读了这些行:
try {
URL game = new URL("http", "somewebsitename", 8013, "index.html");
URLConnection connection = game.openConnection();
BufferedReader in = new BufferedReader(new
InputStreamReader(connection.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null) {
System.out.println(inputLine);
}
in.close();
} catch (Exception e) {
e.printStackTrace();
}
我没有得到我在 Chrome、Firefox 或 Internet Explorer 中看到的源代码,而是得到这些行:
ICY 404 Resource Not Found icy-notice1:
SHOUTcast Distributed Network Audio Server/Linux v1.9.8
icy-notice2: The resource requested was not found
我确保该文件存在于服务器上。