- 浏览: 426896 次
- 性别:
- 来自: 深圳/湛江
文章分类
最新评论
-
wangyudong:
很多API doc生成工具生成doc需要重度依赖代码里加注解的 ...
[ios]利用xcode自动生成项目文档 -
tiger1819:
有源码么,想学习
[android]仿360状态,类流量监控桌面浮动显示 -
119568242:
借我一双翅膀 写道大哥,求指教啊?
IOS 开发,调用打电话,发短信,打开网址 -
借我一双翅膀:
大哥,求指教啊
IOS 开发,调用打电话,发短信,打开网址 -
li247276297:
楼主 是不是要加个权限?
[android]仿360状态,类流量监控桌面浮动显示
http://ask.lurencun.com
海大知道
下载
1. 作用:通过HTTP从互联网下载内容
2. 重点:
1.直接下载内容不保存到Sdcard时 通过url.opneConnection获得连接
2.需要保存成文件时 先判断是否有文件,无则先创建文件夹, 在创建文件。
使用:
不保存到file的
1.通过url获得连接 并强转成HttpURLConnection对象
URL url=new URL(urlstr);
HttpURLConnection hc=(HttpURLConnection)url.openConnection();
2.通过HttpURLConnection对象获取inputStream对象并一步步的装饰成BufferedReader对象。
br=new BufferedReader(new InputStreamReader(hc.getInputStream()));
3.从BufferedReader通过readline()读数据
while((line=br.readLine())!=null){
sb.append(line); //sb是一个StringBuffer对象
}
//bufferReader .readLine() 输出为下一行数据内容且把游标指向下一行 默认游标是在第一行之上 固,每次调用readLine()必须有对象接受此方法返回值(返回值为执行前游标所指的下一行数据)
//Returns the next line of text available from this reader
4.最后把stringbutter 对象toString()生成string对象输出。
保存成file文件的
注意:保存成file的类 应该独立写 只需传入 url,保存的文件名,保存的路径即可。
1.构造file的类 传入当前SD的路径 通过Environment.getExternalStorageDirectory()获得
因为不是所有手机的SD路径都一样 所以这样写可以较好的匹配各种型号的手机
String SDPATH=Environment.getExternalStorageDirectory()
2.判断是否存在当前文件。
public boolean isisFileExist(String path)
{
File file=new File(sd+path);
return file.exists();
}
3.如不存在则生成文件夹 再生成文件
public void creatDirPath(String path)
{
File dir=new File(sd+path);
dir.mkdir();
}
public File creatfile(String namepath) throws IOException
{
File file=new File(sd+namepath);
file.createNewFile();
return file;
}
4.把通过步骤3创造出的FILE对象传入到new FileOutputStram(FILE对象)。 得到一个向File文件输出的FileOutputStram对象。
file=creatfile(dirpath+namepath);
out=new FileOutputStream(file);
5.创建缓冲区
byte buffer [] = new byte[4 * 1024];//缓冲区大小为4K
6.读传入的inputStream流 并写入FileOutputStream
while(is.read(buffer)!=-1){//每次读4K的数据 写入buffer
out.write(buffer);//每次从buffer 取出4k数据
}
7.刷新缓冲区 关闭输出流
刷新缓冲
out.flush();
关闭输出流
finally{
try {
out.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
代码
DownloadActivity
package cfuture.poolo;
import java.io.IOException;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import cfuture.tool.*;
public class DownloadActivity extends Activity {
private Button txtbn=null;
private Button filebn=null;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
txtbn=(Button)this.findViewById(R.id.txtbutton);
filebn=(Button)this.findViewById(R.id.filebutton);
System.out.println("1111");
txtbn.setOnClickListener(new txtbn());
filebn.setOnClickListener(new filebn());
}
class txtbn implements OnClickListener
{
public void onClick(View arg0) {
download d=new download();
String temp=d.downloadTxt("http://192.168.1.101:8080/temp/1.txt");
System.out.println(temp);
}
}
class filebn implements OnClickListener
{
public void onClick(View arg0) {
download d=new download();
try {
System.out.println("22222222222");
d.url2file("http://192.168.1.101:8080/temp/1.wav","muisc/","3.wav");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
Download.java
package cfuture.tool;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import javax.net.ssl.HttpsURLConnection;
public class download {
public String downloadTxt(String urlstr)
{
String line=null;
StringBuffer sb=new StringBuffer();
BufferedReader br=null;
try {
URL url=new URL(urlstr);
HttpURLConnection hc=(HttpURLConnection)url.openConnection();
br=new BufferedReader(new InputStreamReader(hc.getInputStream()));
while((line=br.readLine())!=null){
sb.append(line);
}
//br.readLine() 输出为下一行数据内容且把游标指向下一行 默认游标是在第一行之上
//Returns the next line of text available from this reader
} catch (IOException e) {
e.printStackTrace();
}finally{
try {
br.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return sb.toString();
}
public void url2file(String urlstr,String path,String filename) throws IOException{
FileSD fd=new FileSD();
URL url= new URL(urlstr);
HttpURLConnection ht=(HttpURLConnection)url.openConnection();
int x=fd.write2file(ht.getInputStream(), path, filename);
System.out.println("================="+x);
}
}
FileSD.java
package cfuture.tool;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import android.os.Environment;
public class FileSD {
String sd=null;
public String getSd()
{
return this.getSd();
}
public FileSD()
{
sd=Environment.getExternalStorageDirectory()+"/";
}
//创建路径
public void creatDirPath(String path)
{
File dir=new File(sd+path);
dir.mkdir();
}
public File creatfile(String namepath) throws IOException
{
File file=new File(sd+namepath);
file.createNewFile();
return file;
}
public boolean isisFileExist(String path)
{
File file=new File(sd+path);
return file.exists();
}
public int write2file(InputStream is,String dirpath,String namepath)
{
File file=null;
FileOutputStream out=null;
if(isisFileExist(dirpath+namepath)){
return 0;
}else{
creatDirPath(dirpath);
try {
file=creatfile(dirpath+namepath);
out=new FileOutputStream(file);
int x=0;
byte buffer [] = new byte[4 * 1024];//缓冲区大小为4K
while(is.read(buffer)!=-1){//每次读4K的数据 写入buffer
out.write(buffer);//每次从buffer 取出4k数据
}
out.flush();
} catch (IOException e) {
e.printStackTrace();
return -1;
}finally{
try {
out.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return 1;
}
}
}
2011-8-14
poolo
海大知道
下载
1. 作用:通过HTTP从互联网下载内容
2. 重点:
1.直接下载内容不保存到Sdcard时 通过url.opneConnection获得连接
2.需要保存成文件时 先判断是否有文件,无则先创建文件夹, 在创建文件。
使用:
不保存到file的
1.通过url获得连接 并强转成HttpURLConnection对象
URL url=new URL(urlstr);
HttpURLConnection hc=(HttpURLConnection)url.openConnection();
2.通过HttpURLConnection对象获取inputStream对象并一步步的装饰成BufferedReader对象。
br=new BufferedReader(new InputStreamReader(hc.getInputStream()));
3.从BufferedReader通过readline()读数据
while((line=br.readLine())!=null){
sb.append(line); //sb是一个StringBuffer对象
}
//bufferReader .readLine() 输出为下一行数据内容且把游标指向下一行 默认游标是在第一行之上 固,每次调用readLine()必须有对象接受此方法返回值(返回值为执行前游标所指的下一行数据)
//Returns the next line of text available from this reader
4.最后把stringbutter 对象toString()生成string对象输出。
保存成file文件的
注意:保存成file的类 应该独立写 只需传入 url,保存的文件名,保存的路径即可。
1.构造file的类 传入当前SD的路径 通过Environment.getExternalStorageDirectory()获得
因为不是所有手机的SD路径都一样 所以这样写可以较好的匹配各种型号的手机
String SDPATH=Environment.getExternalStorageDirectory()
2.判断是否存在当前文件。
public boolean isisFileExist(String path)
{
File file=new File(sd+path);
return file.exists();
}
3.如不存在则生成文件夹 再生成文件
public void creatDirPath(String path)
{
File dir=new File(sd+path);
dir.mkdir();
}
public File creatfile(String namepath) throws IOException
{
File file=new File(sd+namepath);
file.createNewFile();
return file;
}
4.把通过步骤3创造出的FILE对象传入到new FileOutputStram(FILE对象)。 得到一个向File文件输出的FileOutputStram对象。
file=creatfile(dirpath+namepath);
out=new FileOutputStream(file);
5.创建缓冲区
byte buffer [] = new byte[4 * 1024];//缓冲区大小为4K
6.读传入的inputStream流 并写入FileOutputStream
while(is.read(buffer)!=-1){//每次读4K的数据 写入buffer
out.write(buffer);//每次从buffer 取出4k数据
}
7.刷新缓冲区 关闭输出流
刷新缓冲
out.flush();
关闭输出流
finally{
try {
out.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
代码
DownloadActivity
package cfuture.poolo;
import java.io.IOException;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import cfuture.tool.*;
public class DownloadActivity extends Activity {
private Button txtbn=null;
private Button filebn=null;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
txtbn=(Button)this.findViewById(R.id.txtbutton);
filebn=(Button)this.findViewById(R.id.filebutton);
System.out.println("1111");
txtbn.setOnClickListener(new txtbn());
filebn.setOnClickListener(new filebn());
}
class txtbn implements OnClickListener
{
public void onClick(View arg0) {
download d=new download();
String temp=d.downloadTxt("http://192.168.1.101:8080/temp/1.txt");
System.out.println(temp);
}
}
class filebn implements OnClickListener
{
public void onClick(View arg0) {
download d=new download();
try {
System.out.println("22222222222");
d.url2file("http://192.168.1.101:8080/temp/1.wav","muisc/","3.wav");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
Download.java
package cfuture.tool;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import javax.net.ssl.HttpsURLConnection;
public class download {
public String downloadTxt(String urlstr)
{
String line=null;
StringBuffer sb=new StringBuffer();
BufferedReader br=null;
try {
URL url=new URL(urlstr);
HttpURLConnection hc=(HttpURLConnection)url.openConnection();
br=new BufferedReader(new InputStreamReader(hc.getInputStream()));
while((line=br.readLine())!=null){
sb.append(line);
}
//br.readLine() 输出为下一行数据内容且把游标指向下一行 默认游标是在第一行之上
//Returns the next line of text available from this reader
} catch (IOException e) {
e.printStackTrace();
}finally{
try {
br.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return sb.toString();
}
public void url2file(String urlstr,String path,String filename) throws IOException{
FileSD fd=new FileSD();
URL url= new URL(urlstr);
HttpURLConnection ht=(HttpURLConnection)url.openConnection();
int x=fd.write2file(ht.getInputStream(), path, filename);
System.out.println("================="+x);
}
}
FileSD.java
package cfuture.tool;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import android.os.Environment;
public class FileSD {
String sd=null;
public String getSd()
{
return this.getSd();
}
public FileSD()
{
sd=Environment.getExternalStorageDirectory()+"/";
}
//创建路径
public void creatDirPath(String path)
{
File dir=new File(sd+path);
dir.mkdir();
}
public File creatfile(String namepath) throws IOException
{
File file=new File(sd+namepath);
file.createNewFile();
return file;
}
public boolean isisFileExist(String path)
{
File file=new File(sd+path);
return file.exists();
}
public int write2file(InputStream is,String dirpath,String namepath)
{
File file=null;
FileOutputStream out=null;
if(isisFileExist(dirpath+namepath)){
return 0;
}else{
creatDirPath(dirpath);
try {
file=creatfile(dirpath+namepath);
out=new FileOutputStream(file);
int x=0;
byte buffer [] = new byte[4 * 1024];//缓冲区大小为4K
while(is.read(buffer)!=-1){//每次读4K的数据 写入buffer
out.write(buffer);//每次从buffer 取出4k数据
}
out.flush();
} catch (IOException e) {
e.printStackTrace();
return -1;
}finally{
try {
out.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return 1;
}
}
}
2011-8-14
poolo
发表评论
-
[android]使用 Matrix 的随触摸旋转的ImageView
2013-02-22 01:58 7923使用 Matrix 的随触摸旋转的ImageView 突 ... -
[android]动态改变按钮背景状态 StateListDrawable
2012-10-29 10:52 1472动态改变按钮背景状态 很少用到 上次和六哥聊到。 ... -
[android]ViewPage上无法通过onKeyDown()获得按钮事件
2012-08-20 04:53 1365系统无法监听到遥控器在VewPage上的按钮事件,如需 ... -
[android]待解决 lisTview 的onItemSelected 监听事件焦点的问题。
2012-08-18 21:18 2176今天遇到个问题 到目前为止 一直不理解为什么 大概描述下布局 ... -
[android]layout_weight 在layout_width 为fill_parent 与wrap_content 时的不同含义
2012-08-12 12:52 1270转自:http://hi.baidu.com/l ... -
[android]仿制新浪微博消息页面 图标切换动画
2012-08-10 17:33 4031研究了下以前不怎么用到的动画效果的实现 顺便做了一个新浪微 ... -
[android]仿制新浪微博消息页面 图标切换动画
2012-08-10 17:33 3研究了下以前不怎么用到的动画效果的实现 顺便做了一个新浪微 ... -
[android]仿制新浪微博消息页面 图标切换动画
2012-08-10 17:33 0研究了下以前不怎么用到的动画效果的实现 顺便做了一个新浪微 ... -
[android]Activity切换动画
2012-08-10 12:23 1478今天准备比赛的时候 遇到了这个问题。 查了些资料 ... -
android中ADT版本问题:无故报 java.lang.NoClassDefFoundError
2012-07-31 22:08 1792今天修改一个老项目的时候,发现在所有配置正确的情况下,代目无任 ... -
[android]仿360状态,类流量监控桌面浮动显示
2012-05-27 22:03 6031前两天看到部分音频播放器可以实现在桌面上显示歌词,360那个浮 ... -
[转]android开发问题记录 "founderapp"
2012-02-08 10:48 1071这段时间,由于某种原因,一直在做android手机开发, ... -
关于weight
2012-02-05 21:20 843layout_weight=1后,除了其它的控件之外剩 ... -
判断SD卡是否存在
2012-02-02 17:54 873android.os.Environment.getEx ... -
[转]Android文件管理器介绍
2012-02-02 16:50 3081转自:http://www.linuxidc.com/L ... -
[转]Android文件管理器介绍
2012-02-02 16:49 5转自:http://www.linuxidc.com/L ... -
[转]android 几何图形的绘制
2012-02-01 16:06 2192转自:http://byandby.iteye.c ... -
Android菜鸟日记32-游戏中的碰撞
2012-01-11 23:09 1754Android菜鸟日记 32-游戏中的碰撞 一、 ... -
Android菜鸟日记31-selector 中使用 shape
2012-01-11 23:05 1613Android菜鸟日记 31- ... -
Android菜鸟日记30-View与SurfaceView
2012-01-11 22:45 949Android菜鸟日记 30 View与Surfa ...
相关推荐
这篇“Android菜鸟日记25-android反编译”将带你走进Android反编译的世界,揭示APK背后的秘密。 首先,让我们了解什么是Android反编译。Android应用主要由Java语言编写,经过编译后生成Dalvik字节码(.dex文件),...
《构建私密日记本:Android小程序开发详解》 在当今数字化时代,个人隐私的保护越来越受到重视,而私密日记本作为一个记录内心世界的私密空间,其数字化形式——Android小程序,成为了许多用户的新选择。本文将详细...
本源码包"cniao5-shop-master"是一个专门为Android平台设计的商城应用项目,名为“菜鸟商城”。这个源码库包含了完整的Android应用开发所需的所有组件和功能,对于开发者来说,无论是学习Android应用开发,还是进行...
【Android App项目:菜鸟微博详解】 在移动应用开发领域,Android平台因其开源性和广泛的设备覆盖范围,成为开发者的重要选择。本项目"菜鸟微博"是一个基于Android的社交媒体应用程序,旨在为初学者提供一个学习和...
Android 逆向菜鸟速参手册骚动版 本手册旨在为 Android 逆向初学者提供一份详细的指导手册,涵盖了 Android 逆向的基础知识和技术。 一、环境搭建 1. Eclipse 搭建 Android 开发环境 2. Eclipse 搭建 NDK 开发...
就业参考资料,Android面试题从菜鸟到高手,扩展就业面。值得看 就业参考资料,Android面试题从菜鸟到高手,扩展就业面。值得看就业参考资料,Android面试题从菜鸟到高手,扩展就业面。值得看就业参考资料,Android...
### Android逆向工程基础知识 #### 一、环境的搭建 - **Eclipse搭建安卓开发环境**:使用Eclipse作为开发工具来搭建安卓开发环境是非常基础的步骤。这通常包括安装Eclipse IDE、Android SDK(软件开发包)、ADT...
在这个名为"android菜鸟练手小项目之自定义日历"的项目中,我们将探索几个关键的技术点。 首先, LitePal数据库 是一个轻量级的ORM(对象关系映射)框架,适用于Android开发。它使得开发者可以更加便捷地操作SQLite...
Android课程设计-计菜鸟裹裹app源代码+文档说明菜鸟裹裹主要包括1.支付宝快速登录2.支付宝注册3.手机淘宝登录,手机登录4.首页-校园认证5.首页-包裹搜索,首页-添加包裹6.首页-扫一扫7.首页-身份码8.首页-寄万物,寄...
在Android应用开发中,"碎片"(Fragment)是Android 3.0(API级别11)引入的一个重要组件,用于创建动态和可重用的UI片段。本篇笔记将深入探讨碎片的概念、用途以及如何在实际项目中使用碎片。通过学习这篇笔记,你...
本文将基于《Java 菜鸟 成长日记》中提到的知识点,详细阐述Java Web开发中关于Servlet的核心概念、生命周期、容器以及实例化和初始化的过程。 首先,Servlet是一种Java类,它继承自httpServlet类,用于在服务器端...
《菜鸟商城》是一款基于Java和安卓技术的企业级电商项目,旨在提供一个全面的在线购物平台。这个项目不仅包含了后台管理系统,还涵盖了移动端的安卓应用,为用户和商家提供了丰富的功能。下面将详细介绍该项目中的...
Android逆向菜鸟速参手册完蛋版_52pojie.pdf 作者允许传播
# 菜鸟商城 # 是一个仿淘宝客户端的实战课程,功能包括:1.支付(支付宝,微信,百度钱包) 、首页 、热卖 、商品大全 、购物车 、我的 、商品列表 、商品详情 、注册/登录 、收货地址 、我的订单 、我的收藏 ..... ...
### Android最新模拟器菜鸟速参手册加强版 #### 概述 本文档旨在为初学者提供一份详尽的指南,帮助他们快速掌握Android模拟器及其相关的ADB(Android Debug Bridge)命令。ADB是一款功能强大的工具,它能够帮助...
Android逆向菜鸟速参手册完蛋版_52pojie.pdf 由于大于60MB所以分为2个压缩文件
"android学习经典小例子菜鸟必备"这个资源正提供了这样的实践平台,让你的编程之路有迹可循。通过对这些实例的深入研究,你可以逐步提升自己的Android开发技能。 在压缩包文件"tiantianshuqian-master"中,我们可以...
### Android手机从菜鸟到高手——全面解析Android操作系统 #### 一、Android操作系统的起源与发展 - **起源**:Android一词原意指“机器人”,它也是Google于2007年11月5日宣布的基于Linux平台的开源手机操作系统...