Android Question Number of bytes sent and received.

zed

Well-Known Member
Licensed User
Hi,

In my app's, I would like to display on the screen the size in KB of the data transferred by the user.

How to calculate the number of bytes sent and received with the httpjob command.

Dim jImg As HttpJob
jImg.Initialize("uploadImg", Me)
jImg.PostMultipart(....)

Dim jTxt As HttpJob
jTxt.Initialize("sendTxt", Me)
jTxt.download2(....)

Can someone help me.

Thank you so much
 
Top