У меня есть следующий код. Я хочу получить URL после завершения загрузки URL. Как я могу подключиться, чтобы дождаться окончания загрузки? Заранее спасибо
URL u = new URL("http://google.com/search?sourceid=navclient&btnI=1&q=" + jTextField1.getText().toString()); HttpURLConnection con = (HttpURLConnection) u.openConnection();
HttpURLConnection ex1 = (HttpURLConnection) u.openConnection(); ex1.setChunkedStreamingMode(7000); // enable chunked streaming mode before connecting to server.