欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java模拟cookie登陆操作

程序员文章站 2024-03-13 10:22:57
在使用java访问url时,如果该url需要身份验证,那么就不能够直接访问,因为没有登陆。那么,如何解决这个问题呢? 方法是使用java模拟登陆,登陆后记录下cook...

在使用java访问url时,如果该url需要身份验证,那么就不能够直接访问,因为没有登陆。那么,如何解决这个问题呢?

方法是使用java模拟登陆,登陆后记录下cookie信息,在下次发起请求时时将cookie发送过去用以表明身份,这样就能够访问带有权限的url了。

下面首先介绍使用java模拟登陆。 

// 连接地址(通过阅读html源代码获得,即为登陆表单提交的url)
 string surl = "http://login.goodjobs.cn/index.php/action/userlogin";

 /**
  * 首先要和url下的urlconnection对话。 urlconnection可以很容易的从url得到。比如: // using
  * java.net.url and //java.net.urlconnection
  */
 url url = new url(surl);
 httpurlconnection connection = (httpurlconnection) url.openconnection();

 /**
  * 然后把连接设为输出模式。urlconnection通常作为输入来使用,比如下载一个web页。
  * 通过把urlconnection设为输出,你可以把数据向你个web页传送。下面是如何做:
  */
 connection.setdooutput(true);
 /**
  * 最后,为了得到outputstream,简单起见,把它约束在writer并且放入post信息中,例如: ...
  */
 outputstreamwriter out = new outputstreamwriter(connection
  .getoutputstream(), "gbk");
        //其中的membername和password也是阅读html代码得知的,即为表单中对应的参数名称
 out.write("membername=mymembername&password=mypassword"); // post的关键所在!
 // remember to clean up
 out.flush();
 out.close();

 // 取得cookie,相当于记录了身份,供下次访问时使用
 string cookieval = connection.getheaderfield("set-cookie");

登陆成功后,即可访问其他url了。 

 string s = "http://user.goodjobs.cn/dispatcher.php/module/resume/action/preview";
 //重新打开一个连接
        url = new url(s);
 httpurlconnection resumeconnection = (httpurlconnection) url
  .openconnection();
 if (cookieval != null) {
            //发送cookie信息上去,以表明自己的身份,否则会被认为没有权限
  resumeconnection.setrequestproperty("cookie", cookieval);
 }
 resumeconnection.connect();
 inputstream urlstream = resumeconnection.getinputstream();
 bufferedreader bufferedreader = new bufferedreader(
  new inputstreamreader(urlstream));
 string ss = null;
 string total = "";
 while ((ss = bufferedreader.readline()) != null) {
  total += ss;
 }
 ioutils.write(total, new fileoutputstream("d:/index.html"));
 bufferedreader.close(); 

通过上述方式,就能访问带有权限控制的url了。思路即为:模拟登陆,取得cookie以记录身份,下次请求时发送cookie以表明身份。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。