关于URLConnection对象

   开始的目的是为了检测一个URL指向的文件是否存在。代码如下:

 try{
   String filePath="http://*****013-09-25_03.csv";
   URL furl=new URL(filePath);
   furl.getContent();
 }catch(FileNotFoundException e){
     /////			
 }

 

  但是后续连接http://*****013-09-25_03.csv进行下载的时候,程序堵住无法执行了。原因就是furl.getContent()持有了对文件的长连接,并且一直没有得到释放。仔细查看了相关的API,没有找到如何释放该连接的办法。将代码改为如下,解决了该问题:

 try{
   String filePath="http://**/compare_status_data_2013-09-25_03.csv";
   URL furl=new URL(filePath);
   URLConnection uc= furl.openConnection();
   InputStream in= uc.getInputStream();
   if(in!=null){
     in.close(); 
   }
 }catch(FileNotFoundException e){  
    /////             
} 

 

 检测一个远程文件是否存在且能正常下载,是否有更好的办法?

你可能感兴趣的:(urlconnection)