Speeding up URLConnection
- From: mark13.pl@xxxxxxxxx
- Date: 30 Aug 2006 06:56:16 -0700
Hello,
I want to save as a string html file. My code looks like that:
URL url = new URL(fileName);
URLConnection conn = url.openConnection();
conn.setRequestProperty("Cookie", myCookieCode);
conn.connect();
BufferedReader dis = new BufferedReader(new
InputStreamReader(conn.getInputStream()));
String inputLine = null;
for(;;) {
inputLine = dis.readLine();
htmlCode += inputLine;
if (inputLine == null) break;
}
It works perfectly (in htmlCode I have the whole page as I wanted) but
it has very big disadvantage - it is VERY slow. In both my browsers
(Firefox, IE6.0, cache cleaned) it takes about 2seconds to load it
while in java: about 14seconds. Do you know where is a problem and how
can I speed it up??
Regards, mark
.
- Follow-Ups:
- Re: Speeding up URLConnection
- From: Babu Kalakrishnan
- Re: Speeding up URLConnection
- From: Chris Uppal
- Re: Speeding up URLConnection
- From: Oliver Wong
- Re: Speeding up URLConnection
- Prev by Date: newbie java design question
- Next by Date: Re: array indexing... you cant use 'long' ???!
- Previous by thread: newbie java design question
- Next by thread: Re: Speeding up URLConnection
- Index(es):