07/07/15 04:16:26
// このURLへは今後接続しないことを示す
public boolean discnct(String cnurl) {
try{
URL url = new URL(cnurl);
HttpURLConnection urlconn = (HttpURLConnection)url.openConnection();
urlconn.disconnect();
return true ;
}
catch(Exception e){
return false ;
}
}