I have to download file which HTTP response is "Transfer-Encoding: Chunked", because of what I can't to «getContentLength» to allocate new bytes buffer for DataInputStream. Can you advice me how to do it correctly?

Code example is very simple:

try
{
       dCon = (HttpURLConnection) new URL(torrentFileDownloadLink.absUrl("href")).openConnection();
       dCon.setRequestProperty("Cookie", "session=" + cookies.get("session"));
       dCon.setInstanceFollowRedirects(false);
       dCon.setRequestMethod("GET");
       dCon.setConnectTimeout(120000);
       dCon.setReadTimeout(120000);

      // byte[] downloadedFile == ???

      DataInputStream br = new DataInputStream((dCon.getInputStream()));
      br.readFully(downloadedFile);
      System.out.println(downloadedFile);

} catch(IOException ex) { Logger.getLogger(WhatCDWork.class.getName()).log(Level.SEVERE, null, ex); }

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Something like,

ByteArrayOutputStream sink = new ByteArrayOutputStream();
//http://helpdesk.objects.com.au/java/how-do-i-copy-one-stream-to-another-using-java
copy(dcon.getInputStream(), sink);  
byte[] downloadedFile = sink.toByteArray();
link|improve this answer
And what is «copy» method? – purple Apr 21 '11 at 1:06
1  
look at the link in the comment above it – sbridges Apr 21 '11 at 1:24
Yep but you have thirs parameter missed? I mean bufferSize. – purple Apr 21 '11 at 1:34
1  
use 1024 as buffer size – sbridges Apr 21 '11 at 2:00
Not works or I made an error :( sinj.toByteArray() is zero length in the end. – purple Apr 21 '11 at 2:12
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.