-
Android 使用HttpURLConnection打开连接读取内容(流)
Android 使用HttpURLConnection打开连接读取内容(流),使用循环来读取获得的数据:
try
{
// 使用HttpURLConnection打开连接
HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();
// 得到读取的内容(流)
InputStreamReader in = new InputStreamReader(urlConn.getInputStream());
// 为输出创建BufferedReader
BufferedReader buffer = new BufferedReader(in);
String inputLine = null;
// 使用循环来读取获得的数据
while (((inputLine = buffer.readLine()) != null))
{
// 我们在每一行后面加上一个"
"来换行
resultData += inputLine + "
";
}
// 关闭InputStreamReader
in.close();
// 关闭http连接
urlConn.disconnect();
// 设置显示取得的内容
if (resultData != null)
{
mTextView.setText(resultData);
}
else
{
mTextView.setText("读取的内容为NULL");
}
}
- 2022-11-05 20:40:03下载
- 积分:1
-
管理网络设备的电子台账,含交换机、路由器、服务器、微机的存放地,使用部门等...
管理网络设备的电子台账,含交换机、路由器、服务器、微机的存放地,使用部门等-network management ledger electronic equipment, including switches, routers, servers, computer storage, the use of sector
- 2023-02-19 04:35:03下载
- 积分:1
-
jtwzcx2.0
交通车辆违章查询源码结构设计合理,违章数据库接入全国各省、市交警违章数据库,违章数据及时、准确!百度收录非常好。放二级目录,或单独做站均可。(Transportation vehicle violation query source structure design, access violation provinces, the city traffic police illegally, illegal data timely and accurate! Baidu included is very good. Put two directories, or individual stations can do.
)
- 2016-05-21 09:18:41下载
- 积分:1
-
ion battery, singing
自己看吧,会唱歌的-ion battery, singing
- 2022-07-24 12:27:48下载
- 积分:1
-
dingpiao
网上订票系统,实现在网络客户端进行在线订票功能,用SQL作为该订票系统的数据管理保存软件,这是一个基于Web的汽车网络订票系统。 (order ticket online !)
- 2014-02-23 16:51:18下载
- 积分:1
-
php 4.0
脚本language code ,解压即可
php 4.0
脚本language code ,解压即可-php 4.0 scripting language code, decompression can
- 2023-08-10 01:55:04下载
- 积分:1
-
ajax版本 无限级联动菜单
ajax版本 无限级联动菜单
- 2013-12-04下载
- 积分:1
-
asp landing interface to connect to the database contains many elements, such as...
asp登陆界面 包含连接数据库等多方面内容 适合交作业-asp landing interface to connect to the database contains many elements, such as for the perpendicular operation
- 2022-11-02 16:00:02下载
- 积分:1
-
广优邮件发送系统
广优邮件发送系统是一个以Jmail组件为基础的程序,只要你的主机支持JMAIL组件,上传到空间内,并且设置好SMTP服务器和账号密码,就可以使用了。可以在线发送邮件到任何邮箱。
广优邮件发送系统3.0版本改进说明:
1.去除了登陆模式
2.MDB导入模式增加了非邮箱地址辨别
3.增加了文本模式导入
4.修改了无邮箱列表出错问题
- 2023-05-25 05:30:03下载
- 积分:1
-
WEB网站服务器源代码
用VB编写
类似于IIS服务器
WEB网站服务器源代码
用VB编写
类似于IIS服务器-WEB Web server source code using VB prepared similar to IIS server
- 2022-10-13 19:45:03下载
- 积分:1