private boolean fun(String link)
try{
Url url = new Url(link);
if(url.getHost()!=null){
return true;
}else{
return false;
}
}catch(Exception e){