当对象作为响应传递时如何设置 Content-Length
我的 ASP.Net 应用程序中有 JSON 对象,我使用代码将其传递给响应
context.Response.Write(jsonObject)
问题是我需要设置 Content-Length 标头来指示响应大小,但我不知道如何计算它。如何获取对象的文件大小?
I have JSON object in my ASP.Net app which I pass to response using code
context.Response.Write(jsonObject)
The problem is that I need to set the Content-Length header to indicate response size and I do not know how to count it. How do I get filesize of Object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
鉴于 JSON 对象是一个字符串,类似的东西
应该可以工作。
Given that the JSON object is a string, something like
should work.
通常你会这样做:
usually you do like this: