-
网络精英留言板的源程序,可以参考建自己的网站留言
网络精英留言板的源程序,可以参考建自己的网站留言-elite network bulletin board of the source, they can refer to build its own Web site message
- 2022-07-27 10:12:42下载
- 积分:1
-
一个Flex component类似于很多spinner.gif在Web 2.0网站中,可以修改显示效果...
一个Flex component类似于很多spinner.gif在Web 2.0网站中,可以修改显示效果-A Flex component similar to many spinner.gif in the Web 2.0 site, you can modify display
- 2022-03-07 09:34:52下载
- 积分:1
-
你想做个人网页吗?不会?没关系,用模板,让你快速开发高质量的网页
你想做个人网页吗?不会?没关系,用模板,让你快速开发高质量的网页-you want personal website? No? Okay, using templates, which allows rapid development of high-quality website
- 2022-09-06 02:45:02下载
- 积分:1
-
FLASH Tutorial turning the page (diary) PHP background,. Fla original source doc...
FLASH教程翻动的页面(日记本)PHP后台,.fla原文件及相关后台源码下载.zip-FLASH Tutorial turning the page (diary) PHP background,. Fla original source documents and related background download. Zip
- 2022-03-02 02:26:56下载
- 积分:1
-
Using ASP to write the sales management system with a view to be useful for all...
用ASP写的销售管理系统,希望对大家有用!-Using ASP to write the sales management system with a view to be useful for all of us!
- 2022-02-02 20:03:00下载
- 积分:1
-
js写的树控件源代码
js写的树控件源代码-js wrote the source code tree controls
- 2022-04-21 01:33:11下载
- 积分:1
-
aspcms2.58更新
最新版,官方已经不再更新aspcms,这是最后一个版本!!! 分享给大家!!!
- 2022-12-23 23:30:04下载
- 积分:1
-
主要介绍就是ASP的后台管理功能。看一下。
主要介绍就是ASP的后台管理功能。看一下。-ASP is the main introduction of the background management functions. Look.
- 2022-01-26 00:18:19下载
- 积分:1
-
sdgjv1.02
时代轨迹全站程序 v1.02(times the station's orbit procedures upscale)
- 2007-05-12 23:44:13下载
- 积分:1
-
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