计数通过HTTP发送/接收的字节数

时间:2009-09-18 23:44:52

标签: java http byte counter

在Java中,
如何计算通过活动HTTP连接发送和接收的字节数? 我想显示一些统计数据:

Bytes Sent     : xxxx Kb   
Bytes Received : xxxx Kb  
Duration       : hh:mm

2 个答案:

答案 0 :(得分:1)

在您自己的流中包装HTTPURLConnection的getInputStream()和getOutputStream(),计算通过它们的字节数。或者甚至更好地使用Apache Commons IO库 - 它们在那里有计数流实现。

答案 1 :(得分:1)

很难看出如何装饰HttpConnection来计算原始字节数据。您可以使用套接字重新实现HTTP,但这对于这些长度来说非常重要。

来自stackoverflow.com的示例回复:

HTTP/1.1 200 OK
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Encoding: gzip
Expires: Mon, 21 Sep 2009 11:46:48 GMT
Vary: Accept-Encoding
Server: Microsoft-IIS/7.0
Date: Mon, 21 Sep 2009 11:46:48 GMT
Content-Length: 19452

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                      "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>...remaining data....

HTTP请求相当简单,因此您可以尝试使用公开的信息重新构建它。形式的东西:

// TODO: edge cases, error handling, header delimiter, etc.
int byteCount = 0;
int headerIndex = 0;
while (true) {
  String key = httpConnection.getHeaderFieldKey(headerIndex);
  if (key == null)
    break;
  String value = httpConnection.getHeaderField(headerIndex++);
  byteCount += key.getBytes("US-ASCII").length
      + value.getBytes("US-ASCII").length + 2;
}
byteCount += httpConnection.getHeaderFieldInt("Content-Length",
    Integer.MIN_VALUE);

该实施不完整且未经测试。您需要仔细研究HTTP protocol的详细信息,以确保结果的准确性。