httpfoxwatch怎么用

您的举报已经提交成功,我们将尽快处理,谢谢!
IE9正在测试阶段出问题是正常的,换IE或换其它浏览器试试。
或换火狐或Opera试试,这些都是不用IE做内核的,如果是IE有问题,还原一下系统或重装IE...
大家还关注
(window.slotbydup=window.slotbydup || []).push({
id: '2081942',
container: s,
size: '1000,60',
display: 'inlay-fix'正在播放:第1-3讲:抓包不求人--使用HttpWatch抓包
下载学院APP缓存视频离线看
记录时间点
我的笔记同学的笔记
我的问题同学的问题注意:现在httpwatch也可以集成到火狐浏览器中.
HttpWatch是强大的网页数据分析工具.集成在Internet Explorer工具栏.包括网页摘要.Cookies管理.缓存管理.消息头发送/接受.字符查询.POST 数据和目录管理功能.报告输出.HttpWatch 是一款能够收集并显示深层信息的软件。它不用代理服务器或一些复杂的网络监控工具,就能够在显示网页同时显示网页请求和回应的日志信息。甚至可以显示浏览器缓存和IE之间的交换信息。集成在Internet Explorer工具栏。
只需要选择相应的网站,软件就可以对网站与IE之间的需求回复的通讯情况进行分析并在同一界面显示其相应日志记录。每一个HTTP记录都可以详细的分析其 Cookies、消息头、字符查询等信息。支持HTTPS及分析报告输出为XML、CSV等格式。
二.软件下载
三.软件安装
软件安装过程十分简单,除了修改安装路径以外(如无特别需要,路径也可默认),不需要做特别设置,依照安装向导一路&下一步&即可完成软件安装。
注意:软件安装前需要关闭所有浏览器!
四.基本功能介绍
启动Httpwatch&
从IE的&查看&&&浏览器栏&&&HttpWatch&启动HttpWatch,如下图所示:
点击&Record&后,在IE打开需要录制的网址,如:.cn,回车后可以看到以下界面:
HttpWatch分为上下两个窗口,上面的窗口用来记录HTTP会话过程,主要信息如下:
Started:此栏表示URL请求开始的时间,取的是相对于第一个请求发起后的偏移。
Time&Chart:用图形的方式表示资源从请求开始到下载结束的动态过程。
Time:资源下载耗时&
Sent:发送请求的字节数
Received:接收响应的字节数
Method:客户端请求类型
Result:服务端相应类型
Type:资源类型
URL:资源URL
下面的窗口用来显示一个会话的详细信息:
Overview:显示会话概览信息,包括客户端请求的URL、服务器端响应类型以及服务器IP等信息。
Time&Chart:时间
Headers:请求头和响应头
Cookies:cookie&
Cache:浏览器缓存信息
Query&String:/&
Post&Data:Post方法发送的数据
Content:显示响应的内容,比如图片、js脚本等
Stream:数据流
3) 过滤条件
如果想对录制的URL进行过滤,只查看特定的HTTP会话记录,则可以启用Filter选项,如下图所示:
Filter可以设置包括资源类型、响应类型、url中包含字段等多种过滤条件。
4) 保存录制结果
可以将录制的结果保存起来,用于以后的查询和离线分析。
阅读(...) 评论()您的举报已经提交成功,我们将尽快处理,谢谢!
大家还关注
(window.slotbydup=window.slotbydup || []).push({
id: '2081942',
container: s,
size: '1000,60',
display: 'inlay-fix'C# 调用httpwatch接口基础使用方法 - little_bill - ITeye技术网站
博客分类:
(1)安装httpwatch;
(2)打开c#工程,在“引用”中增加“COM”组件,在“COM”组件中找到“HttpWatch Professional 7.2 Automation Libary”,确定。(7.2为我安装的httpwatch版本)
(3)copy代码
using HttpW
namespace page_check
class PageChecker
[STAThread]
static void Main(string[] args)
Console.WriteLine("Enter the URL of the page to check (press enter for /):\r\n");
string url = Console.ReadLine();
if ( url.Length == 0 )
url = "/";
Console.WriteLine("\r\nChecking " + url + "...\r\n");
// Create a new instance of HttpWatch in IE
Controller control = new Controller();
Plugin plugin = control.IE.New();
// Start Recording HTTP traffic
plugin.Log.EnableFilter(false);
plugin.Record();
// Goto to the URL and wait for the page to be loaded
plugin.GotoURL(url);
control.Wait(plugin, -1);
// Stop recording HTTP
plugin.Stop();
if (plugin.Log.Pages.Count != 0)
Console.WriteLine("\r\nPage Title: '" + plugin.Log.Pages[0].Title + "'");
Console.WriteLine();
// Display summary statistics for page
Summary summary = plugin.Log.Pages[0].Entries.S
Console.WriteLine("Total time to load page (secs):
" + summary.Time);
Console.WriteLine("Number of bytes received on network: " + summary.BytesReceived);
Console.WriteLine("HTTP compression saving (bytes):
" + pressionSavedBytes);
Console.WriteLine("Number of round trips:
" + summary.RoundTrips);
Console.WriteLine("Number of errors:
" + summary.Errors.Count);
Console.WriteLine("-----------------------",plugin.Log.Entries.Count);
//Entries e = plugin.Log.E
for (int i=0; i&plugin.Log.Entries.C i++)
Console.Write(plugin.Log.Entries[i].URL);
Console.WriteLine(" " + plugin.Log.Entries[i].Time);
// Close down IE
plugin.CloseBrowser();
Console.WriteLine( "\r\nPress Enter to exit");
Console.ReadLine();
little_bill
浏览: 296845 次
来自: 北京
你好如果抓取的的URL里有中文字符,请问要怎么处理,才能正常访 ...
好人啊!祝你好运
为什么我这里url总是报链接错误,不是传过去的action的值 ...

我要回帖

更多关于 httpwatch怎么打开 的文章

 

随机推荐