0

是否可以使用 apache http 客户端处理弹出窗口?

我正在尝试访问该网站。访问特定页面会弹出一个新窗口,在 http 响应中,我得到的都是 HTML 中弹出的新窗口代码。

有没有办法从 http 客户端重定向到新的弹出窗口?

我的代码

HttpResponse res = null;
HttpEntity entity = null;
DefaultHttpClient defClient = new DefaultHttpClient();

HttpPost httpost = new HttpPost("http://sudhaezine.com/svww_loginform.php?email=guest@xxx.com&password=yyy&brw=safari");
res = defClient.execute(httpost);
entity = res.getEntity();

StringBuffer sb = new StringBuffer();
BufferedReader reader = new BufferedReader(new InputStreamReader(entity.getContent()));
String str;
while ((str = reader.readLine()) != null) {
    sb.append(new String(str.getBytes(), "UTF-8"));
}
entity.consumeContent();

这给出了以下响应

<html><head>  <title></title></head><META HTTP-EQUIV=refresh content=30;url=thankyou.php><body background="images/bg1.gif"><script language="javascript">var popupstr='';   //var bor = navigator.appName;   //alert(bor);   doPopUpWindow = window.open("svww_index1.php","StarView",'width=800,height=600,left=0,top=0'+popupstr);  // if (!doPopUpWindow) {       //Popup blocked open with in current browser window.     //  doPopUpWindow = window.open("svww_index1.php","_parent",'width='+ screen.availWidth +',height='+ screen.availHeight +',left=0,top=0'+popupstr);  // }    try{ var obj = doPopUpWindow.name;  // window.close();//WindowOpen.close();//alert("Popup blocker NOT detected");    }   catch(e){       doPopUpWindow = window.open("svww_index1.php","_parent",'width='+ screen.availWidth +',height='+ screen.availHeight +',left=0,top=0'+popupstr); }</script></body></html>
4

1 回答 1

1

您无法使用 http 客户端自动处理此类弹出窗口,因为它们是通过客户端 JavaScript 代码创建的。所以你需要带有 JS 解释器的客户端(比如网络浏览器)。

您可以通过对 JavaScript 代码进行逆向工程,将您从响应正文中获取的参数传递给结果函数,并使用 http 客户端向生成的 url 发出新请求。这个过程称为Web 抓取

于 2013-07-22T11:01:04.640 回答