// http://blog.csdn.net/woxueliuyun/article/details/43267365

package tool

class MyHttpUrlConn {

public static String cookieVal=""

public static void Get(String url_get,String str_param_url,String charset,String cookie) throws IOException {

// 拼凑get请求的URL字串,使用URLEncoder.encode对特殊和不可见字符进行编码

// String getURL = GET_URL + "?username=" + URLEncoder.encode("fat man", "utf-8");

String getURL = url_get + "?" + str_param_url

URL getUrl = new URL(getURL);

// 根据拼凑的URL,打开连接,URL.openConnection函数会根据URL的类型,

// 返回不同的URLConnection子类的对象,这里URL是一个http,因此实际返回的是HttpURLConnection

HttpURLConnection connection = (HttpURLConnection) getUrl

.openConnection();

if (cookie != null) {

//发送cookie信息上去,以表明自己的身份,否则会被认为没有权限

println("set cookieVal = [" + cookie + "]")

connection.setRequestProperty("Cookie", cookie);

}

// 进行连接,但是实际上get request要在下一句的connection.getInputStream()函数中才会真正发到

// 服务器

connection.connect();

// 取得输入流,并使用Reader读取

BufferedReader reader = new BufferedReader(new InputStreamReader(

connection.getInputStream(),charset));

System.out.println("Contents of get request:");

String lines;

while ((lines = reader.readLine()) != null) {

System.out.println(lines);

}

println(" ")

reader.close();

// 断开连接

connection.disconnect();

}

public static String Post(String url_post,String str_param_body,String charset,boolean b_flag,String cookies) throws IOException {

// Post请求的url,与get不同的是不需要带参数

URL postUrl = new URL(url_post);

// 打开连接

HttpURLConnection connection = (HttpURLConnection) postUrl

.openConnection();

// Output to the connection. Default is

// false, set to true because post

// method must write something to the

// connection

// 设置是否向connection输出,因为这个是post请求,参数要放在

// http正文内,因此需要设为true

if("" != cookies){

connection.setRequestProperty("Cookie", cookies);

}

connection.setDoOutput(true);

// Read from the connection. Default is true.

connection.setDoInput(true);

// Set the post method. Default is GET

connection.setRequestMethod("POST");

// Post cannot use caches

// Post 请求不能使用缓存

connection.setUseCaches(false);

// This method takes effects to

// every instances of this class.

// URLConnection.setFollowRedirects是static函数,作用于所有的URLConnection对象。

// connection.setFollowRedirects(true);

// This methods only

// takes effacts to this

// instance.

// URLConnection.setInstanceFollowRedirects是成员函数,仅作用于当前函数

connection.setInstanceFollowRedirects(b_flag);

// Set the content type to urlencoded,

// because we will write

// some URL-encoded content to the

// connection. Settings above must be set before connect!

// 配置本次连接的Content-type,配置为application/x-www-form-urlencoded的

// 意思是正文是urlencoded编码过的form参数,下面我们可以看到我们对正文内容使用URLEncoder.encode

// 进行编码

connection.setRequestProperty("Content-Type",

"application/x-www-form-urlencoded");

// 连接,从postUrl.openConnection()至此的配置必须要在connect之前完成,

// 要注意的是connection.getOutputStream会隐含的进行connect。

connection.connect();

DataOutputStream out = new DataOutputStream(connection

.getOutputStream());

// The URL-encoded contend

// 正文,正文内容其实跟get的URL中'?'后的参数字符串一致

// String content = "userName=" + URLEncoder.encode("console", "utf-8");

// content = content + "&password=" + URLEncoder.encode("12345678", "utf-8");

println("http param body = [" + str_param_body + "]")

// DataOutputStream.writeBytes将字符串中的16位的unicode字符以8位的字符形式写道流里面

out.writeBytes(str_param_body);

out.flush();

// 取得cookie,相当于记录了身份,供下次访问时使用

// cookieVal = connection.getHeaderField("Set-Cookie").split(";")[0]

cookieVal = connection.getHeaderField("Set-Cookie")

println("get cookieVal = [" + cookieVal + "]")

out.close(); // flush and close

BufferedReader reader = new BufferedReader(new InputStreamReader(

connection.getInputStream(),charset));

String line;

System.out.println("Contents of post request:");

while ((line = reader.readLine()) != null) {

System.out.println(line);

}

println(" ")

reader.close();

connection.disconnect();

return cookieVal

}

}

用法:

String cookie_login = MyHttpUrlConn.Post(URL_LOGIN,"userName=admin&password=12345678","utf-8",false,"");

MyHttpUrlConn.Post(URL_POST_SAVE,"name=mxb&yearsold=6","utf-8",false,cookie_login);

MyHttpUrlConn.Get(URL_GET_VIEW,"name=mxb&yearsold=6","utf-8",cookie_login);

说明:

向URL_POST_SAVE Post数据时,要带上URL_LOGIN时生成的cookie,否则无法save数据。

同理Get也是。

java 登录牵手_Java: HttpURLConnection 模拟登录方法 (带cookie 的Post/Get)_20160908_七侠镇莫尛貝...相关推荐

  1. Java: HttpURLConnection 使用多线程加快批量Post/Get的效率_20160918_七侠镇莫尛貝

    使用多线程,可大大提高批量Post/Get操作的效率. Post线程类: class Thread_Http_Post extends Thread{public static String cook ...

  2. java 模拟登录微信_java 微信模拟登录错误,微信改版后不能使用

    这段代码是我java里面的代码 Map map = new HashMap(); //用户名 and 密码是正确的 map.put("username", username); / ...

  3. python模拟qq空间登录_模拟登录系列 | QQ空间模拟登录

    原文链接模拟登录系列 | QQ空间模拟登录​mp.weixin.qq.com 本系列所有代码均在这CharlesPikachu/DecryptLogin​github.com 原理简介 这里,我们简单 ...

  4. Spring Boot + Java爬虫 + 部署到Linux (三、Java爬虫使用代理,模拟登录,保存cookie)

    很多网站对资源都有一定的限制.如果不登录,不是网站的登录用户(会员)访问的话,一些资源会访问不到.这对我们爬虫是十分不利的.而绝大多数网站都是通过登录之后,向浏览器设置cookie,达到验证的功能. ...

  5. 12-基于selenium实现12306模拟登录,及京东登录滑动缺口验证模拟登录

    流程分析: 使用selenium打开登录页面 对当前selenium打开的这张页面进行截图 对当前图片的局部区域(验证码图片区域)进行截图 这样验证码图片和模拟登录进行所显示的图片一一对应(如果我们对 ...

  6. python登录跳转_Python模拟登录和登录跳转的参考示例

    # coding:utf-8 import urllib import urllib2 import cookielib from bs4 import BeautifulSoup # 设置登录url ...

  7. python模拟登录详细教程_Python模拟登录requests.Session应用详解

    最近由于某些原因,需要用到Python模拟登录网站,但是以前对这块并不了解,而且目标网站的登录方法较为复杂, 所以一下卡在这里了,于是我决定从简单的模拟开始,逐渐深入地研究下这块. 注:本文仅为交流学 ...

  8. python多次登录教务系统_python3模拟登录正方教务系统

    刚学了大概两周的python ,顺便搞了下爬虫.试着用python模拟登录学校的教务系统. 看了个教程,附上链接 参照教程做了一下,发现系统经过一些变动,原教程还有很多可以改进的地方 准备工作 先来看 ...

  9. python的urllib2实现登录网页_python模拟网站登录(urllib、urllib2模拟登录)

    使用python模拟登录网站,首先要知道网站登录细节及相应的cookie. 分三步完成: 1,获取一个cookie 2,装载好自己的request 3,发送模拟登录请求 推荐阅读: Python模拟新 ...

最新文章

  1. Android Studio教程10-Intent的详细使用
  2. 每天一道LeetCode-----给定一个矩阵,如果某个元素是0,就将所在行所在列上所有元素否置0
  3. linux kernel defconfig和.config
  4. 基于Dapper的开源Lambda扩展,且支持分库分表自动生成实体之基础介绍
  5. 当电压放大电路的开路增益和输出电阻固定后_放大器的设计基础
  6. ElasticSearch 倒排索引_08
  7. 艾伟:彻底解决刷新重复提交问题,你还在用Response.Redirect吗?
  8. mybaties :required string parameter ‘XXX‘is not present
  9. 基于Jupyter Notebook---卷积神经网络的图像分类(keras对猫狗图像数据集进行分类)
  10. 李宏毅机器学习——无监督学习(二)
  11. Flash研究(一)——本地通讯
  12. DiskFileUpload 中文乱码 解决方法
  13. UE4中的委托和事件
  14. 我国历史上各个朝代的都城
  15. eoLinker-AMS接口管理系统 项目管理教程
  16. matlab bsxfun memory,matlab函数bsxfun浅谈(转载)
  17. 免费且不丢失数据的MBR转GPT软件!
  18. 多边形裁剪(Polygon Clipping) 1
  19. 文献管理工具——Zotero教程
  20. “失败”的北漂十年,我真的尽力了。。。

热门文章

  1. android同步服务启动,Android Service的基本用法(startService启动方式生命周期)
  2. 2020南大计科考研实记(受难三跨)
  3. spark UDAF
  4. 渗透测试专题之decms的攻防篇(一)
  5. matlab列优先与高维矩阵重构 及 CNN 逐层可视化 on Matlab
  6. C#3.0 新特性系列(6) Extension Methods
  7. C#比较数组内元素相等-冒泡
  8. android 6.0动态权限的申请
  9. ODI中web service介绍
  10. 【极光推送】给指定用户发送消息