Java で Web サイトへの多くの接続を開く方法を探しています。
私の問題は、多くの場合、サーバーの応答時間が非常に遅いことです。したがって、多くの接続を開くことを処理でき、接続/応答の準備ができたときにハンドラーを使用する Java ライブラリを探すことをお勧めします。
のようなものはありますか (これは疑似コードです!!)
getWebsiteContent(URL url) { //does not wait for the response
new AsynchronousConnection(url) {
requestServedHandler(ConnectionObject) {
InputStream is = ConnectionObject.getInputStream();
//here I will process the content of the stream only when it is available
}
}
}
生の HTML を提供するハンドラーは気にしません。