public String HttpURLConnection(int position){
org.jsoup.nodes.Document doc = null;
try {
doc = Jsoup.connect("http://"+generateUrl()[position]).get();
} catch (IOException e) {
e.printStackTrace();
}
if (doc != null) {
return doc.tagName("head").text();
}
return "error error error error error error error error error error";
}