首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
Web开发
> 详细
http发送http报文
时间:
2015-06-10 06:28:52
阅读:
493
评论:
0
收藏:
0
[点我收藏+]
标签:
package com.lkt.jdk;
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public
class GetHttp {
public
static String getWebContent()
throws IOException{
//创建URL,协议、ip、端口、访问的页面
URL url=
new URL(
"HTTP",
"192.168.22.209",
7001,
"/Request_USER_LOGIN");
//创建HttpURLConnection 对象
HttpURLConnection conn=(HttpURLConnection)url.openConnection();
//设置请求方式POST
conn.setRequestMethod(
"POST");
conn.setRequestProperty(
"Content-Type",
"application/xml");
conn.setRequestProperty(
"Connection",
"Keep-Alive");
//请求的数据
String xml=
"<?xml version=\"1.0\" encoding=\"UTF-8\"?> "+
"<HTTP_XML EventType=\"Request_USER_LOGIN\" TargetSyscode=\"\" RequestId=\"\" TransactionId=\"\">"+
" <Item Name=\"admin\" Password=\"670b14728ad9902aecba32e22fa4f6bd\" UserIp=\"\" Port=\"\" BusinessSysCode=\"\"/>"+
"</HTTP_XML>";
//数据长度
conn.setRequestProperty(
"Content-Length",xml.length()+
"");
//设置输入和输出流
conn.setDoOutput(
true);
conn.setDoInput(
true);
//将参数输出到连接
//使用这种方式,我在本地执行没有问题,在weblogic下出现过错误
//java.net.ProtocolException: Did not meet stated content length of OutputStream: you wrote 0 bytes and I was expecting you to write exactly 241 bytes!!!
//我使用第二中方法就可以了
/*方法一
conn.getOutputStream().write(xml.getBytes("UTF-8"));
conn.getOutputStream().flush();
conn.getOutputStream().close();
*/
/*
* 方法二 */
DataOutputStream dos=
new DataOutputStream(conn.getOutputStream());
dos.writeBytes(xml);
dos.flush();
dos.close();
//得到HTTP响应码
int code=conn.getResponseCode();
InputStream is=conn.getInputStream();
//获取返回报文
BufferedReader bis=
new BufferedReader(
new InputStreamReader(is));
StringBuffer sb=
new StringBuffer();
String temp=
"";
while((temp=bis.readLine())!=
null){
sb.append(temp+
"\n");
}
return
null;
}
public
static
void main(String[] args)
throws Exception {
getWebContent();
}
}
http发送http报文
标签:
原文地址:http://www.cnblogs.com/zszitman/p/4565003.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
36.VUE — 认识 Webpack 和 安装
2021-07-28
【PHP】上传图片翻转问题
2021-07-28
php对数字进行万。亿的转化
2021-07-28
五个 .NET 性能小贴士
2021-07-28
Three.js中显示坐标轴、平面、球体、四方体
2021-07-28
.net 5+ 知新:【1】 .Net 5 基本概念和开发环境搭建
2021-07-27
1.html,css
2021-07-27
基于Docker搭建 Php-fpm + Nginx 环境
2021-07-27
nginx + http + svn
2021-07-27
kubernets kube-proxy的代理 iptables和ipvs
2021-07-26
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!