码迷,mamicode.com
首页 > 编程语言 > 详细

jsoup-提示java.net.SocketTimeoutException:Read timed out

时间:2015-08-18 11:35:41      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:

使用Jsoup.connect(url).get()连接某网站时偶尔会出现

java.net.SocketTimeoutException:Read timed out异常。

 

原因是默认的Socket的延时比较短,而有些网站的响应速度比较慢,所以会发生超时的情况。

 

 

解决方法:

链接的时候设定超时时间即可。

doc = Jsoup.connect(url).timeout(5000).get();

 

5000表示延时时间设置为5s。

 

 

测试代码如下:

 

1,不设定timeout时:

package jsoupTest;  
  
import java.io.IOException;  
  
import org.jsoup.*;  
import org.jsoup.helper.Validate;  
import org.jsoup.nodes.Document;  
import org.jsoup.nodes.Element;  
import org.jsoup.select.Elements;  
  
public class JsoupTest {  
    public static  void main(String[] args) throws IOException{  
    String url = "http://www.weather.com.cn/weather/101010400.shtml";  
    long start = System.currentTimeMillis();  
    Document doc=null;  
    try{  
        doc = Jsoup.connect(url).get();  
    }  
    catch(Exception e){  
        e.printStackTrace();  
    }  
    finally{  
        System.out.println("Time is:"+(System.currentTimeMillis()-start) + "ms");  
    }  
    Elements elem = doc.getElementsByTag("Title");  
    System.out.println("Title is:" +elem.text());  
    }     
}  

 

有时发生超时:

java.net.SocketTimeoutException: Read timed out

 

 

2,设定了则一般不会超时

package jsoupTest;  
  
import java.io.IOException;  
  
import org.jsoup.*;  
import org.jsoup.helper.Validate;  
import org.jsoup.nodes.Document;  
import org.jsoup.nodes.Element;  
import org.jsoup.select.Elements;  
  
public class JsoupTest {  
    public static  void main(String[] args) throws IOException{  
    String url = "http://www.weather.com.cn/weather/101010400.shtml";  
    long start = System.currentTimeMillis();  
    Document doc=null;  
    try{  
        doc = Jsoup.connect(url).timeout(5000).get();  
    }  
    catch(Exception e){  
        e.printStackTrace();  
    }  
    finally{  
        System.out.println("Time is:"+(System.currentTimeMillis()-start) + "ms");  
    }  
    Elements elem = doc.getElementsByTag("Title");  
    System.out.println("Title is:" +elem.text());  
    }     
}  

 

jsoup-提示java.net.SocketTimeoutException:Read timed out

标签:

原文地址:http://www.cnblogs.com/hwaggLee/p/4738762.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!