Android 下载文件及写入SD卡
Android 下载文件及写入SD卡,实例代码
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <Button
- android:id="@+id/downloadTxt"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="下载文本文件"
- />
- <Button
- android:id="@+id/downloadMp3"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="下载MP3文件"
- />
- </LinearLayout>
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.learning.example"
- android:versionCode="1"
- android:versionName="1.0">
- <application android:icon="@drawable/icon" android:label="@string/app_name">
- <activity android:name=".Download"
- android:label="@string/app_name">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
- <uses-sdk android:minSdkVersion="8" />
- <!-- 访问网络和操作SD卡 加入的两个权限配置-->
- <uses-permission android:name="android.permission.INTERNET"/>
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
- </manifest>
- package com.learning.example.util;
- import java.io.BufferedReader;
- import java.io.File;
- import java.io.IOException;
- import java.io.InputStream;
- import java.io.InputStreamReader;
- import java.net.HttpURLConnection;
- import java.net.MalformedURLException;
- import java.net.URL;
- public class HttpDownloader {
- private URL url = null;
- /**
- * 根据URL下载文件,前提是这个文件当中的内容是文本,函数的返回值就是文本当中的内容
- * 1.创建一个URL对象
- * 2.通过URL对象,创建一个HttpURLConnection对象
- * 3.得到InputStream
- * 4.从InputStream当中读取数据
- * @param urlStr
- * @return
- */
- public String download(String urlStr){
- StringBuffer sb = new StringBuffer();
- String line = null;
- BufferedReader buffer = null;
- try {
- url = new URL(urlStr);
- HttpURLConnection urlConn = (HttpURLConnection)url.openConnection();
- buffer = new BufferedReader(new InputStreamReader(urlConn.getInputStream()));
- while( (line = buffer.readLine()) != null){
- sb.append(line);
- }
- }
- catch (Exception e) {
- e.printStackTrace();
- }
- finally{
- try {
- buffer.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- return sb.toString();
- }
- /**
- *
- * @param urlStr
- * @param path
- * @param fileName
- * @return
- * -1:文件下载出错
- * 0:文件下载成功
- * 1:文件已经存在
- */
- public int downFile(String urlStr, String path, String fileName){
- InputStream inputStream = null;
- try {
- FileUtils fileUtils = new FileUtils();
- if(fileUtils.isFileExist(path + fileName)){
- return 1;
- } else {
- inputStream = getInputStreamFromURL(urlStr);
- File resultFile = fileUtils.write2SDFromInput(path, fileName, inputStream);
- if(resultFile == null){
- return -1;
- }
- }
- }
- catch (Exception e) {
- e.printStackTrace();
- return -1;
- }
- finally{
- try {
- inputStream.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- return 0;
- }
- /**
- * 根据URL得到输入流
- * @param urlStr
- * @return
- */
- public InputStream getInputStreamFromURL(String urlStr) {
- HttpURLConnection urlConn = null;
- InputStream inputStream = null;
- try {
- url = new URL(urlStr);
- urlConn = (HttpURLConnection)url.openConnection();
- inputStream = urlConn.getInputStream();
- } catch (MalformedURLException e) {
- e.printStackTrace();
- } catch (IOException e) {
- e.printStackTrace();
- }
- return inputStream;
- }
- }
- package com.learning.example.util;
- import java.io.File;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import java.io.InputStream;
- import java.io.OutputStream;
- import android.os.Environment;
- public class FileUtils {
- private String SDPATH;
- private int FILESIZE = 4 * 1024;
- public String getSDPATH(){
- return SDPATH;
- }
- public FileUtils(){
- //得到当前外部存储设备的目录( /SDCARD )
- SDPATH = Environment.getExternalStorageDirectory() + "/";
- }
- /**
- * 在SD卡上创建文件
- * @param fileName
- * @return
- * @throws IOException
- */
- public File createSDFile(String fileName) throws IOException{
- File file = new File(SDPATH + fileName);
- file.createNewFile();
- return file;
- }
- /**
- * 在SD卡上创建目录
- * @param dirName
- * @return
- */
- public File createSDDir(String dirName){
- File dir = new File(SDPATH + dirName);
- dir.mkdir();
- return dir;
- }
- /**
- * 判断SD卡上的文件夹是否存在
- * @param fileName
- * @return
- */
- public boolean isFileExist(String fileName){
- File file = new File(SDPATH + fileName);
- return file.exists();
- }
- /**
- * 将一个InputStream里面的数据写入到SD卡中
- * @param path
- * @param fileName
- * @param input
- * @return
- */
- public File write2SDFromInput(String path,String fileName,InputStream input){
- File file = null;
- OutputStream output = null;
- try {
- createSDDir(path);
- file = createSDFile(path + fileName);
- output = new FileOutputStream(file);
- byte[] buffer = new byte[FILESIZE];
- /*真机测试,这段可能有问题,请采用下面网友提供的
- while((input.read(buffer)) != -1){
- output.write(buffer);
- }
- */
- /* 网友提供 begin */
- int length;
- while((length=(input.read(buffer))) >0){
- output.write(buffer,0,length);
- }
- /* 网友提供 end */
- output.flush();
- }
- catch (Exception e) {
- e.printStackTrace();
- }
- finally{
- try {
- output.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- return file;
- }
- }
- package com.learning.example;
- import com.learning.example.util.HttpDownloader;
- import android.app.Activity;
- import android.os.Bundle;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
- public class Download extends Activity {
- private Button downlaodTxtButton ;
- private Button downlaodMP3Button ;
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- downlaodTxtButton = (Button)findViewById(R.id.downloadTxt);
- downlaodTxtButton.setOnClickListener(new DownloadTxtListener());
- downlaodMP3Button = (Button)findViewById(R.id.downloadMp3);
- downlaodMP3Button.setOnClickListener(new DownloadMP3Listener());
- }
- class DownloadTxtListener implements OnClickListener{
- @Override
- public void onClick(View v) {
- HttpDownloader downloader = new HttpDownloader();
- String lrc = downloader.download("http://172.16.11.9:8080/test/1.lrc");
- System.out.println(lrc);
- }
- }
- class DownloadMP3Listener implements OnClickListener{
- @Override
- public void onClick(View v) {
- HttpDownloader downloader = new HttpDownloader();
- int result = downloader.downFile("http://172.16.11.9:8080/test/1.mp3", "voa/", "1.map3");
- System.out.println(result);
- }
- }
- }
Notice:访问网络和操作SD卡 记得加入的两个权限配置
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
Android 下载文件及写入SD卡的更多相关文章
- Android从网络某个地址下载文件、写入SD卡
首先创建一个HttpDownloader类,获取下载文件的网络地址,将文件下载下来以String流的方式返回: public String download(String urlStr){ //url ...
- Android 将文件保存到SD卡中
①写文件到sd卡中需要获得权限,在AndroidManifest.xml中添加如下权限: <uses-permission android:name="android.permissi ...
- Android 将文件保存到SD卡,从卡中取文件,及删除文件
//保存到SD卡 private static String sdState = Environment.getExternalStorageState(); private static S ...
- Android根据URL下载文件保存到SD卡
//下载具体操作 private void download() { try { URL url = new URL(downloadUrl); //打开连接 URLConnection conn = ...
- 转 Android:文件下载和写入SD卡学习小结
转自 http://blog.csdn.net/zzp_403184692/article/details/8160739 一.文件下载 Android开发中,有时需要从网上下载一些资源以供用户使 ...
- [置顶] Android学习系列-把文件保存到SD卡上面(6)
Android学习系列-把文件保存到SD卡上面(5) 一般多媒体文件,大文件需要保存到SD卡中.关键点如下: 1,SD卡保存目录:mnt/sdcard,一般采用Environment.getExter ...
- android学习笔记47——读写SD卡上的文件
读写SD卡上的文件 通过Context的openFileInput.openFileOutput来打开文件输入流.输出流时,程序打开的都是应用程序的数据文件夹里的文件,其存储的文件大小可能都比较有限- ...
- assets下的文件复制到SD卡
由于assets和res下的文件都只可以读不可以写,那么在程序初始化后,将后期需要使用并且需要修改的文件复制到SD卡.下面代码提供一个工具类,将assets下的任意资源复制到SD卡下. assets下 ...
- asserts文件存到外部SD卡里
package com.example.wang.testapp3; import android.content.res.AssetManager; import android.graphics. ...
随机推荐
- AngularJs-指令1
前言: 前面写的有些乱,并且有些罗嗦,以后会注意的.希望我写的文章能帮助大家. 1,什么是指令 简单的说,指令是angularjs在html页面中建立一套自己能识别的标签元素.属性.类和注释,用来达到 ...
- 每天一个linux命令(52):scp命令
scp 是secure copy的简写,用于在Linux下进行远程拷贝文件的命令,和它类似的命令有cp,不过cp只是在本机进行拷贝不能跨服务器,而且 scp传输是加密的.可能会稍微影响一下速度.当你服 ...
- Codeforces Round #379 (Div. 2) D. Anton and Chess 模拟
题目链接: http://codeforces.com/contest/734/problem/D D. Anton and Chess time limit per test4 secondsmem ...
- chrom_input_click
<!doctype html> <html> <head> <meta charset="utf-8"> <title> ...
- CSS设置技巧
一.单位和值 1.1 颜色值 在网页中的颜色设置是非常重要,有字体颜色(color).背景颜色(background-color).边框颜色(border)等,设置颜色的方法也有很多种: 1.英文命令 ...
- RedGate .NET Reflector注册问题(反注册)
Reflector分为桌面版和VS集成版本,当我们使用注册机注册的时候如果注册了Standvard版本,那么我们的VS就不能集成查看,也不能Debug,那么这 显然不是我们想要的,我们会选择重新注册, ...
- Bzoj 1336&1337 Alien最小圆覆盖
1336: [Balkan2002]Alien最小圆覆盖 Time Limit: 1 Sec Memory Limit: 162 MBSec Special Judge Submit: 1473 ...
- PHP局部变量与全局变量
一.局部变量定义:在函数内部声明,且只能在函数内部调用的变量. 注意:参数也是局部变量的一种. demo1:1 function demo1(){2 $age = 10;3 }4 5 echo ...
- IOS基础之 (七) 分类Category
一 Category 分类:Category(类目,类别) (OC有) 命名:原来的类+类别名(原来的类名自动生成,只要写后面的类别名,一般以模块名为名.比如原来类 Person,新建分类 Ct,新建 ...
- 解决IE apk变成zip:Android 手机应用程序文件下载服务器Nginx+Tomcat配置解决方法
APK文件其实是zip格式,但后缀名被修改为apk,通过UnZip解压后,可以看到Dex文件,Dex是Dalvik VM executes的全称,即Android Dalvik执行程序,并非Java ...