我正在努力制作一个网络刮板,收集一年中每天的前100首音乐。目前我正在尝试编写收集源代码的函数。我几乎只是从我的其他刮刀中复制并粘贴它,但由于一些奇怪的原因,它会返回一个空列表。
我相信我们正在使用函数get_source_code,但我可能错了。不返回任何错误消息。非常感谢帮助提前感谢。
import java.util.ArrayList;
import java.io.InputStreamReader;
import java.net.URL;
import java.util.List;
import javax.net.ssl.HttpsURLConnection;
import java.io.BufferedReader;
import java.io.IOException;
public class MusicScraper {
public static void main(String [] args)throws IOException {
parse_source_code(get_source_code("","",""));
}
public static List<String> get_source_code(String day, String month, String year)throws IOException{
List <String> sourceC = new ArrayList<>();
URL link = new URL("https://www.billboard.com/charts/hot-100/2017-02-25"); //"http://www.billboard.com/charts/hot-100/" + year + "-" + month + "-" + day );
HttpsURLConnection billboardConnection = (HttpsURLConnection) link.openConnection();
billboardConnection.setRequestProperty("User-Agent", "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; en-US; rv:1.9.2.2) Gecko/20100316 Firefox/3.6.2");
billboardConnection.connect();
BufferedReader in = new BufferedReader(new InputStreamReader(billboardConnection.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null) {
sourceC.add(inputLine);
}
System.out.println(sourceC);
return sourceC;
}
public static List<String> parse_source_code(List<String> sourceCode){
List<String> data = new ArrayList<>();
List<String> rank = new ArrayList<>();
List<String> song = new ArrayList<>();
List<String> artist = new ArrayList<>();
for (int i = 0; i < sourceCode.size(); i++) {
if (sourceCode.get(i).contains("data-songtitle=\"")) {
String parsedSong = sourceCode.get(i).split("data-songtitle=\"")[1].split("\">")[0];
song.add(parsedSong);
}
}
System.out.println(song);
return sourceCode;
}
}
答案 0 :(得分:1)
如果您检查了请求的响应代码:
System.out.println(billboardConnection.getResponseCode());
您会看到它返回301错误代码(永久移动)。
有时要抓取返回移动错误的网址,您需要按照重定向网址进行操作。但是,在这种情况下,如果您检查重定向URL(存储在Location头字段中),您会看到:
http://www.billboard.com/charts/hot-100/2017-02-25
这意味着您的请求正在从https降级为http,因此您可以通过首先使用http轻松解决您的问题:
URL link = new URL("http://www.billboard.com/charts/hot-100/2017-02-25");