-
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
-
xycmsbook
XYCMS留言板V1.1是站长花近一个小时时间潜心编写的,现在免费放给大家使用了,由于制作仓促,还没有经过严格测试,后期我也会不断完善的,努力为广大用户服务。
(XYCMS V1.1 is the webmaster message board spent nearly an hour, prepared with great concentration, and now put to you for free use, due to production constraints, have not been rigorously tested, post-I will continue to improve, and strive to serve the customers.)
- 2010-12-18 16:09:17下载
- 积分:1
-
用 Asp 开发的,简单的 ADO 连接代码,初学者可以参考。
用 Asp 开发的,简单的 ADO 连接代码,初学者可以参考。-with Asp development, the simple ADO connection code, beginners can make reference to it.
- 2023-05-06 22:30:02下载
- 积分:1
-
现有功能:热门商品、热销商品、特价商品、会员中心、购物车、商品分类,全源码提供,开发者可以基于各自的系统要求进行任意修改和扩展,完全基于3层结构设计,代码写作非...
现有功能:热门商品、热销商品、特价商品、会员中心、购物车、商品分类,全源码提供,开发者可以基于各自的系统要求进行任意修改和扩展,完全基于3层结构设计,代码写作非常规范,有完整的中文注释,逻辑性强-existing functions : hot commodity, hot-selling merchandise and discounted merchandise, Member Center, Cart, commodity classification, the entire source code available, developers can be based on the system requirements for their arbitrary changes and extensions, based solely on the three-tier structure design, code writing very norms, End Notes of the entire Chinese, logic-
- 2022-05-16 17:03:32下载
- 积分:1
-
字幕滚动源代码
字幕滚动源代码-Subtitles rolling source code
- 2022-03-10 21:03:18下载
- 积分:1
-
简单的投稿系统,该系统比较适合初学者学习,其中包括了的对数据库的多种操作,使用数据库控件分页等基本功能,注释清楚,代码清晰....
简单的投稿系统,该系统比较适合初学者学习,其中包括了的对数据库的多种操作,使用数据库控件分页等基本功能,注释清楚,代码清晰.-Contributor simple system, which are more suitable for beginners to learn, including a variety of database operations, such as the use of the database controls the basic functions of paging, notes that a clear code.
- 2022-06-26 01:23:44下载
- 积分:1
-
ASP.net MVC4权限管理系统源代码1.02
1、解压密码 407640582
2、数据库 采用附加的方式,附加文件在“数据库文件"
3、代码采用vs2012,双击 MVC4权限管理系统源代码源代码SKDevelopmentSKDevelopment.sln打开。
4、数据库连接信息在solutionwebweb.config下面,将下面的信息 修改为你本机实际的情况
5、修改完成以后,运行web项目即可。
6、用户名 admin 密码 admin
- 2023-02-14 11:40:14下载
- 积分:1
-
一个简单的PHP投票程序 统计投票次数和投票的分布 简单实用
一个简单的PHP投票程序 统计投票次数和投票的分布 简单实用-a simple PHP voting procedures and voting frequency distribution of voting simple and practical
- 2022-02-06 02:21:38下载
- 积分:1
-
国内首个XUL后台BLOG系统,asp+access系统,DIV+CSS前台,XUL后台。...
国内首个XUL后台BLOG系统,asp+access系统,DIV+CSS前台,XUL后台。-domestic first XUL background BLOG system, asp access system, DIV CSS prospects, XUL background.
- 2022-01-25 15:42:31下载
- 积分:1
-
asp操作 文本生成pdf的代码
可以根据这个操作word,excle等office...
asp操作 文本生成pdf的代码
可以根据这个操作word,excle等office-asp operation to generate pdf version of the code can be operated in accordance with this word, excle such as office
- 2022-03-18 09:17:55下载
- 积分:1