在使用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以表明身份。

原文地址:http://blog.csdn.net/prince2270/article/details/6137810

最新文章

  1. cin.ignore()函数的用法
  2. 阅读の反思のGraphicsPath.AddArc
  3. Batik - 将svg转换成其他格式图片或PDF - [导出服务器配置] 导出服务器原理解析
  4. C#与C++函数调用
  5. ms sql 根据表名查询 表中所有字段的属性值 sql语句
  6. 解决Myeclipse在port占用,导致tomcat无法启动。(Linux)
  7. java回调机制及其实现(转)
  8. jquery中如何以逗号分割字符串_百度知道
  9. SharePoint客户端js对象模型
  10. [SDOI2010]粟粟的书架
  11. Java爬取 百度图片Google图片Bing图片
  12. Python:用 peewee 框架连接 SQL Server
  13. 【错误解决】Intellj(IDEA) warning no artifacts configured
  14. 进程命令(taskkill)
  15. layui 的 GitHub 及 Gitee (码云) 仓库
  16. SqlServer常用内置函数
  17. json(传输格式)、异步加载、时间线
  18. java判断包含contains方法的使用
  19. 2.1 C++类的定义和声明
  20. F2eTest和uirecorder自动化测试环境部署填坑记录

热门文章

  1. Android进度加载的Loading效果
  2. Android 快速开发框架XUtils
  3. elementaryOS系统托盘解决方案
  4. Unity3d 基于物理渲染Physically-Based Rendering之specular BRDF
  5. PackageManager获取版本号
  6. Backbone.js developer 武汉 年薪8w-10w
  7. CUDA 进阶学习
  8. Trail: JDBC(TM) Database Access(1)
  9. Spark系列(九)DAGScheduler工作原理
  10. Memory Cache(内存缓存)