我有一个关于获得整个响应大小的问题。
我试图使用 getHeader 函数来查找标头的 while 大小(字节),但是
我找不到标题的整个大小
我正在使用 doPost 函数,它通过 request 和 response 。
我能够找到请求标头的内容但是,我不确定如何获取响应的内容(或大小)
有谁知道如何获取响应的字节大小或标头的内容?
谢谢
我有一个关于获得整个响应大小的问题。
我试图使用 getHeader 函数来查找标头的 while 大小(字节),但是
我找不到标题的整个大小
我正在使用 doPost 函数,它通过 request 和 response 。
我能够找到请求标头的内容但是,我不确定如何获取响应的内容(或大小)
有谁知道如何获取响应的字节大小或标头的内容?
谢谢
You can wrap your servlet with a filter in two manners:
org.apache.catalina.connector.Response
, and call
getBytesWritten(false)
. This is what the access log valve does (see implementation here). Notice this is the size of the response body only.