java 获得响应内容_Java 纯HTTP Get请求获取响应内容,如果302,继而获取重定向后的响应内容。...

标签:public static void main(String[] args) {

try {

StringBuffer buffer = new StringBuffer();

String url = "http://localhost:8080/istock/login?u=name&p=pass";

System.out.println("访问地址:" + url);

//发送get请求

URL serverUrl = new URL(url);

HttpURLConnection conn = (HttpURLConnection) serverUrl.openConnection();

conn.setRequestMethod("GET");

//必须设置false,否则会自动redirect到重定向后的地址

conn.setInstanceFollowRedirects(false);

conn.addRequestProperty("Accept-Charset", "UTF-8;");

conn.addRequestProperty("User-Agent", "Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.2.8) Firefox/3.6.8");

conn.addRequestProperty("Referer", "http://matols.com/");

conn.connect();

//判定是否会进行302重定向

if (conn.getResponseCode() == 302) {

//如果会重定向,保存302重定向地址,以及Cookies,然后重新发送请求(模拟请求)

String location = conn.getHeaderField("Location");

String cookies = conn.getHeaderField("Set-Cookie");

serverUrl = new URL(location);

conn = (HttpURLConnection) serverUrl.openConnection();

conn.setRequestMethod("GET");

conn.setRequestProperty("Cookie", cookies);

conn.addRequestProperty("Accept-Charset", "UTF-8;");

conn.addRequestProperty("User-Agent","Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.2.8) Firefox/3.6.8");

conn.addRequestProperty("Referer", "http://matols.com/");

conn.connect();

System.out.println("跳转地址:" + location);

}

//将返回的输入流转换成字符串

InputStream inputStream = conn.getInputStream();

InputStreamReader inputStreamReader = new InputStreamReader(inputStream,"utf-8");

BufferedReader bufferedReader = new BufferedReader(inputStreamReader);

String str = null;

while ((str = bufferedReader.readLine()) != null) {

buffer.append(str);

}

bufferedReader.close();

inputStreamReader.close();

// 释放资源

inputStream.close();

inputStream = null;

System.out.println(buffer.toString());

} catch (Exception e) {

e.printStackTrace();

}

}

标签:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值