我正在尝试从网站中提取一些信息。这是代码。
Connection conn = Jsoup.connect(s_url); //s_url has been initialized to contain the url
conn.timeout(300000); //5 minutes
Document doc = conn.get();
//some code
连接似乎需要相当长的时间,大约8-10秒。我想显示像
这样的东西Connecting...
在连接建立时点数增加。有没有办法检查是否已与jsoup建立连接?如果没有,是否可以在Java中以任何其他方式进行?
答案 0 :(得分:0)
我建议你使用线程。产生一个将连接到服务器的线程,并在主线程中等待它完成,同时打印点:
Thread t = new Thread(
new Runnable() {
public void run() {
System.out.println("Connecting");
try{
loginForm = Jsoup.connect(s_url).execute();
}catch (Exception e){
}
}
}
);
t.start();
while(t.isAlive()){
Thread.sleep(1000); //1 second
System.out.print(".");
}