如何验证网页是否已被 gzip 压缩?

发布于 2024-08-25 00:12:13 字数 107 浏览 4 评论 0原文

我计划配置 weblogic 的 gzip servlet 过滤器(使用 weblogicx-gzip.jar)来对我的网页进行 gzip 压缩。

如何验证页面是否已压缩发送到客户端?

I plan to configure weblogic's gzip servlet filter (using weblogicx-gzip.jar) to gzip my web pages.

How can I verify that the pages are being sent to the client gzipped?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(8

萌能量女王 2024-09-01 00:12:13
  1. 安装适用于 Firefox 的 FireBug
  2. 启用 FireBug。
  3. 启用网络选项卡。
  4. 加载您的网页。
  5. 展开包含您的网页的行。
  6. 如果 Content-Encodinggzip,您会收到 GZip 格式的页面。
  1. Install FireBug for Firefox.
  2. Enable FireBug.
  3. Enable the Net tab.
  4. Load your webpage.
  5. Expand the line that contains your webpage.
  6. If Content-Encoding is gzip you received the page in GZip format.
贵在坚持 2024-09-01 00:12:13

我赞同 Yslow 的评论。但为了扩展一点,YSlow 将显示正在使用 GZip 的项目以及未使用 GZip 的项目。只需转到 YSlow 插件的“组件”选项卡,它就会为您提供一个漂亮的项目列视图(见图)。

YSlow 组件选项卡

I second the Yslow comment. But to expand just a little, YSlow will show items are using GZip as well as items that are not. Just go to the Components tab of the YSlow Plugin and it will give you a nice column view of items (see image).

YSlow Components Tab

家住魔仙堡 2024-09-01 00:12:13

yslow会告诉你。至少它会告诉你它们什么时候没有拉上拉链。

yslow will tell you. At least it will tell you when they are not zipped.

与他有关 2024-09-01 00:12:13

对您来说快速而简单:在以下网站上在线检查:

  1. http://checkgzipcompression.com/
  2. http://www.whatsmyip.org/http-compression-test/

希望有用

Fast and easy for you: Check online on below sites:

  1. http://checkgzipcompression.com/
  2. http://www.whatsmyip.org/http-compression-test/

Hope it useful

扶醉桌前 2024-09-01 00:12:13

该网站提供在线工具来检查

http://www.port80software.com/products/httpzip/

that site offer online tool to check

http://www.port80software.com/products/httpzip/

人海汹涌 2024-09-01 00:12:13

不确定您是否正在寻找自动方式。但 Firefox 的 Firebug 和/或 PageSpeed 扩展会告诉您哪些文件正在被 gzip 压缩。

对于 Firebug,在“Net”面板中,如果您查看文件标头,如果经过 gzip 压缩,则应该有一个“Content-Encoding: gzip”标头。

YSlow 扩展还会在一个屏幕上告诉您哪些 JS/CSS 文件经过 gzip 压缩,哪些没有。

Not sure if you're looking for a automatic way. But the Firebug and/or PageSpeed extensions for Firefox will tell which files are being gzipped.

For Firebug, in the "Net" panel, if you look at the files headers there should be a "Content-Encoding: gzip" header if it's gzipped.

The YSlow extension will also tell you on one screen which JS/CSS files are gzipped and which are not.

不一样的天空 2024-09-01 00:12:13

您可以使用 fiddler 并检查 http 标头的 gzip 编码。此外,如果您想查看压缩程度,您可以查看使用和不使用过滤器的页面大小。根据我的经验,我发现文本数据的平均压缩率为 90%。

You can use fiddler and inspect the http header for gzip encoding. Also if you want to see how much compression it did, you can see the page size with and without the filter. From my experience I have seen 90% compression on average on text data.

秋日私语 2024-09-01 00:12:13

Google Chrome 或 Chromium 的 Web 开发工具包也可以做到这一点(与 Firebug 类似)。

Google Chrome's, or Chromium's, web developer kit can also do this (in a similar fashion as Firebug).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文