博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Http的操作(不传递参数)
阅读量:6176 次
发布时间:2019-06-21

本文共 558 字,大约阅读时间需要 1 分钟。

ttpResponse  httpResponse = null;
      H
ttpEntity  httpEntity = null;
HttpGet httpGet = new HttpGet("http://www.baidu.com");
HttpClient httpClient = new DefaultHttpClient();
 
InputStream inputStream = null;
 
httpResponse = httpClient.execute(httpGet);
httpEntity = httpResponse.getEntity();
inputStream = httpEntity.getContent();
BufferedReader br = new BufferedReader(new InputStreamReader(inputStream));
String result = null;
String line = null;
result = result + line;
System.out.println(result);
e.printStackTrace();
inputStream.close();
e.printStackTrace();
}

转载地址:http://vtwda.baihongyu.com/

你可能感兴趣的文章
StringUtils工具类的常用方法
查看>>
linux下VNC安装与配置
查看>>
URL编码
查看>>
光模块及光纤知识(含分类,常用类型介绍)
查看>>
Apache 单IP多端口设置
查看>>
安装系统前的准备---vmware
查看>>
Tiny并行计算框架之使用介绍
查看>>
Linux od命令
查看>>
一个不错的MySQL集群管理工具
查看>>
mysql-proxy 按表分发查询的lua脚本
查看>>
在wordpress主题下面添加二级菜单
查看>>
CentOS 下JDK安装
查看>>
Nginx + Django
查看>>
我的友情链接
查看>>
用shell脚本编写进度条
查看>>
使用Live555类库实现的网络直播系统
查看>>
IO与NIO
查看>>
go_wed编程笔记
查看>>
iptables防火墙的使用
查看>>
浅谈js中的继承
查看>>