Tagged Questions
3
votes
3answers
1k views
Get Size of HTTP Response in Java
I would like to know how much data was sent in response to a certain http-request.
What I currently do is this:
HttpURLConnection con = (HttpURLConnection) feedurl.openConnection();
//check the ...
0
votes
1answer
89 views
IMAP command to get size of message
I am looking for the best way to get the sizes of messages using IMAP(i am writing a simple c# lib for myself). Basically a POP3 STAT command equivalent would be good, but it does not exist. I am ...