Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to upload a file to server and monitor it's progress. i need to get a notification how many bytes are sent each time.

For example in case of download i have:

HttpURLConnection  connection = (HttpURLConnection) m_url.openConnection();
connection.connect();
InputStream stream = connection.getInputStream();
while ((currentBytes  = stream.read(byteBuffer)) > 0) {                    
    totalBytes+=currentBytes;
    //calculate something...
}

Now i need to do the same for upload. but if use

OutputStreamWriter stream = new OutputStreamWriter(connection.getOutputStream());
stream.write(str);
stream.flush();

than i can't get any progres notification, about how many bytes are sent (it looks like automic action).

Any suggestions?

Thanks

share|improve this question
It's a shame you didn't get a real answer to this question, I was curious... – MirroredFate Jun 13 '11 at 15:37
it seems that HttpURLConnection is not the right object for the task. it is non blocking for output, so i can't measure performance with it. i'm trying to use sockets now. – Sophie Jun 16 '11 at 13:12
Yeah, with sockets you can use getSendBufferSize to determine when they are sending data. – MirroredFate Jun 16 '11 at 14:51

6 Answers

up vote 3 down vote accepted

I have used ChannelSocket object. This object allows to do blocking read and write when accessing the server. So i emulated HTTP using this socket and each write request was blocked untill it was done. This way i could follow the actual progress of write transaction.

share|improve this answer

What I have done in similar situations is create a subclass of FilterOutputStream which overrides the write(...) methods and can then notify your code of any written bytes.

share|improve this answer
Hi. I saw such example, but maybe i didn't understand it. I mean when i write to the stream (using write method single time) i do know how many bytes i have written, but i don't see the progress on it. They might be sent to the server only upon flush method. – Sophie Jun 9 '11 at 14:52
@Sophie I had a similar issue as well. The bytes are cached and only written after a certain time. You can solve this problem by setting the content length in advance if you know it - see HttpURLConnection.setFixedLengthStreamingMode for more info. – Phill Sacre Jun 9 '11 at 14:54
ok thank, but still if i call write() 1 time with a large text file, I will not see a notification on each chunk that is being sent, right? – Sophie Jun 9 '11 at 14:57
If you need a notification on each byte, do something like the answer MirroredFate gave. Write the bytes one at at a time (or a small amount at a time). – Phill Sacre Jun 9 '11 at 15:01
no, no. the ideal is to get notification on each chunk being sent to server by the API, without interfereing the way the file is being split to packets over the network. – Sophie Jun 9 '11 at 15:06

If you want to count the bytes you're uploading, write the objects as byte arrays to the output stream itself, like you are doing with the input stream.

share|improve this answer
yeah, but that would be intervene with the way the file would be chunked if i didn't slipt it myself. – Sophie Jun 9 '11 at 14:53

It would be similar to the way your download works.

OutputStream stream = connection.getOutputStream();
for(byte b: str.getBytes()) {                    
    totalBytes+=1;
    stream.write(b);
    if(totalBytes%50 == 0)
        stream.flush(); //bytes will be sent in chunks of 50
    //calculate something...
}
stream.flush();

Something like that.

share|improve this answer
calling write doesn't necessarily send these bytes to the server adn i need to messure the response time. – Sophie Jun 9 '11 at 14:54
Depending on the output stream, you are write. However... I can modify this a bit... – MirroredFate Jun 9 '11 at 14:59
it can work, but still i would like to get notifications when each packet is sent , without configuring explicitly the size being sent. – Sophie Jun 9 '11 at 15:08
Ahhh... You might want to edit your question to say that. Add something like, "My question is how can I get a notification every time this sends a packet?" – MirroredFate Jun 9 '11 at 15:16
this is not working after all because thewrite method is non blocking method, so it returns regardless when the actual write is performed. – Sophie Jun 16 '11 at 13:15

A different approach is polling the server asking how much of the data is uploaded. Maybe using an id or something.

POST -> /uploadfile

  • id
  • file

POST -> /queryuploadstate (Returns the partial size)

  • id

Of course it needs the servlets to be connected and doesn't allow clustering...

share|improve this answer

...Or if your servlet can write a response while reading the uploaded file, make it say how much is reading, and flush:

Servlet.doPost
- loop
- read N
- count += N
- output.write(count); // use a DataOutputStream or something over the response.getOutputStream

Sender:
- creates a thread for listening
- write all the data

Listening:
- loop
- reads from the connection (try to read the size of the count: maybe DataInputStream.readInt())
- notify :)

Hope it works...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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