Android关于FTP文件上传和下载功能详解

本文实例为大家分享了Android九宫格图片展示的具体代码,供大家参考,具体内容如下

此篇博客为整理文章,供大家学习。

1.首先下载commons-net  jar包,可以百度下载。

FTP的文件上传和下载的工具类:

package ryancheng.example.progressbar; import java.io.File; import java.io.FileOutputStream; import java.io.InputStream; import java.io.OutputStream; import java.io.RandomAccessFile; import org.apache.commons.net.ftp.FTP; import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPFile; import org.apache.commons.net.ftp.FTPReply; import android.os.Environment; public class FTPManager { FTPClient ftpClient = null; public FTPManager() { ftpClient = new FTPClient(); } // 连接到ftp服务器 public synchronized boolean connect() throws Exception { boolean bool = false; if (ftpClient.isConnected()) {//判断是否已登陆 ftpClient.disconnect(); } ftpClient.setDataTimeout(20000);//设置连接超时时间 ftpClient.setControlEncoding("utf-8"); ftpClient.connect("ip地址", 端口); if (FTPReply.isPositiveCompletion(ftpClient.getReplyCode())) { if (ftpClient.login("用户名", "密码")) { bool = true; System.out.println("ftp连接成功"); } } return bool; } // 创建文件夹 public boolean createDirectory(String path) throws Exception { boolean bool = false; String directory = path.substring(0, path.lastIndexOf("/") + 1); int start = 0; int end = 0; if (directory.startsWith("/")) { start = 1; } end = directory.indexOf("/", start); while (true) { String subDirectory = directory.substring(start, end); if (!ftpClient.changeWorkingDirectory(subDirectory)) { ftpClient.makeDirectory(subDirectory); ftpClient.changeWorkingDirectory(subDirectory); bool = true; } start = end + 1; end = directory.indexOf("/", start); if (end == -1) { break; } } return bool; } // 实现上传文件的功能 public synchronized boolean uploadFile(String localPath, String serverPath) throws Exception { // 上传文件之前,先判断本地文件是否存在 File localFile = new File(localPath); if (!localFile.exists()) { System.out.println("本地文件不存在"); return false; } System.out.println("本地文件存在,名称为:" + localFile.getName()); createDirectory(serverPath); // 如果文件夹不存在,创建文件夹 System.out.println("服务器文件存放路径:" + serverPath + localFile.getName()); String fileName = localFile.getName(); // 如果本地文件存在,服务器文件也在,上传文件,这个方法中也包括了断点上传 long localSize = localFile.length(); // 本地文件的长度 FTPFile[] files = ftpClient.listFiles(fileName); long serverSize = 0; if (files.length == 0) { System.out.println("服务器文件不存在"); serverSize = 0; } else { serverSize = files[0].getSize(); // 服务器文件的长度 } if (localSize <= serverSize) { if (ftpClient.deleteFile(fileName)) { System.out.println("服务器文件存在,删除文件,开始重新上传"); serverSize = 0; } } RandomAccessFile raf = new RandomAccessFile(localFile, "r"); // 进度 long step = localSize / 100; long process = 0; long currentSize = 0; // 好了,正式开始上传文件 ftpClient.enterLocalPassiveMode(); ftpClient.setFileType(FTP.BINARY_FILE_TYPE); ftpClient.setRestartOffset(serverSize); raf.seek(serverSize); OutputStream output = ftpClient.appendFileStream(fileName); byte[] b = new byte[1024]; int length = 0; while ((length = raf.read(b)) != -1) { output.write(b, 0, length); currentSize = currentSize + length; if (currentSize / step != process) { process = currentSize / step; if (process % 10 == 0) { System.out.println("上传进度:" + process); } } } output.flush(); output.close(); raf.close(); if (ftpClient.completePendingCommand()) { System.out.println("文件上传成功"); return true; } else { System.out.println("文件上传失败"); return false; } } // 实现下载文件功能,可实现断点下载 public synchronized boolean downloadFile(String localPath, String serverPath) throws Exception { // 先判断服务器文件是否存在 FTPFile[] files = ftpClient.listFiles(serverPath); if (files.length == 0) { System.out.println("服务器文件不存在"); return false; } System.out.println("远程文件存在,名字为:" + files[0].getName()); localPath = localPath + files[0].getName(); // 接着判断下载的文件是否能断点下载 long serverSize = files[0].getSize(); // 获取远程文件的长度 File localFile = new File(localPath); long localSize = 0; if (localFile.exists()) { localSize = localFile.length(); // 如果本地文件存在,获取本地文件的长度 if (localSize >= serverSize) { System.out.println("文件已经下载完了"); File file = new File(localPath); file.delete(); System.out.println("本地文件存在,删除成功,开始重新下载"); return false; } } // 进度 long step = serverSize / 100; long process = 0; long currentSize = 0; // 开始准备下载文件 ftpClient.enterLocalActiveMode(); ftpClient.setFileType(FTP.BINARY_FILE_TYPE); OutputStream out = new FileOutputStream(localFile, true); ftpClient.setRestartOffset(localSize); InputStream input = ftpClient.retrieveFileStream(serverPath); byte[] b = new byte[1024]; int length = 0; while ((length = input.read(b)) != -1) { out.write(b, 0, length); currentSize = currentSize + length; if (currentSize / step != process) { process = currentSize / step; if (process % 10 == 0) { System.out.println("下载进度:" + process); } } } out.flush(); out.close(); input.close(); // 此方法是来确保流处理完毕,如果没有此方法,可能会造成现程序死掉 if (ftpClient.completePendingCommand()) { System.out.println("文件下载成功"); return true; } else { System.out.println("文件下载失败"); return false; } } // 如果ftp上传打开,就关闭掉 public void closeFTP() throws Exception { if (ftpClient.isConnected()) { ftpClient.disconnect(); } } }

具体实现看代码注释写的很详细。

一.Android中FTP文件上传代码:

// 上传例子 private void ftpUpload() { new Thread() { public void run() { try { System.out.println("正在连接ftp服务器...."); FTPManager ftpManager = new FTPManager(); if (ftpManager.connect()) { if (ftpManager.uploadFile(ftpManager.rootPath + "UpdateXZMarketPlatform.apk", "mnt/sdcard/")) { ftpManager.closeFTP(); } } } catch (Exception e) { // TODO: handle exception // System.out.println(e.getMessage()); } } }.start(); }

二.Android中FTP文件下载代码:

// 下载例子 private void ftpDownload() { new Thread() { public void run() { try { System.out.println("正在连接ftp服务器...."); FTPManager ftpManager = new FTPManager(); if (ftpManager.connect()) { if (ftpManager.downloadFile(ftpManager.rootPath, "20120723_XFQ07_XZMarketPlatform.db")) { ftpManager.closeFTP(); } } } catch (Exception e) { // TODO: handle exception // System.out.println(e.getMessage()); } } }.start(); }

自己之前做项目的时候写过的FTP上传代码:

package com.kandao.yunbell.videocall; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.net.SocketException; import org.apache.commons.net.ftp.FTP; import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPReply; import com.kandao.yunbell.common.SysApplication; import android.content.Context; import android.util.Log; public class MyUploadThread extends Thread { private String fileName;// 文件名字 private String filePath;// 文件本地路径 private String fileStoragePath;// 文件服务器存储路径 private String serverAddress;// 服务器地址 private String ftpUserName;// ftp账号 private String ftpPassword;// ftp密码 private Context mContext; public MyUploadThread() { super(); // TODO Auto-generated constructor stub } public MyUploadThread(Context mContext,String fileName, String filePath, String fileStoragePath,String serverAddress,String ftpUserName,String ftpPassword) { super(); this.fileName = fileName; this.filePath = filePath; this.fileStoragePath = fileStoragePath; this.serverAddress = serverAddress; this.ftpUserName = ftpUserName; this.ftpPassword = ftpPassword; this.mContext=mContext; } @Override public void run() { super.run(); try { FileInputStream fis=null; FTPClient ftpClient = new FTPClient(); String[] idPort = serverAddress.split(":"); ftpClient.connect(idPort[0], Integer.parseInt(idPort[1])); int returnCode = ftpClient.getReplyCode(); Log.i("caohai", "returnCode,upload:"+returnCode); boolean loginResult = ftpClient.login(ftpUserName, ftpPassword); Log.i("caohai", "loginResult:"+loginResult); if (loginResult && FTPReply.isPositiveCompletion(returnCode)) {// 如果登录成功 // 设置上传目录 if (((SysApplication) mContext).getIsVideo()) { ((SysApplication) mContext).setIsVideo(false); boolean ff=ftpClient.changeWorkingDirectory(fileStoragePath + "/video/"); Log.i("caohai", "ff:"+ff); }else{ boolean ee=ftpClient.changeWorkingDirectory(fileStoragePath + "/photo/"); Log.i("caohai", "ee:"+ee); } ftpClient.setBufferSize(1024); // ftpClient.setControlEncoding("iso-8859-1"); // ftpClient.enterLocalPassiveMode(); ftpClient.setFileType(FTP.BINARY_FILE_TYPE); fis = new FileInputStream(filePath + "/" + fileName); Log.i("caohai", "fileStoragePath00000:"+fileStoragePath); String[] path = fileStoragePath.split("visitorRecord"); boolean fs = ftpClient.storeFile(new String((path[1] + "/photo/" + fileName).getBytes(), "iso-8859-1"), fis); Log.i("caohai", "shifoushangchuanchenggong:"+fs); fis.close(); ftpClient.logout(); //ftpClient.disconnect(); } else {// 如果登录失败 ftpClient.disconnect(); } } catch (NumberFormatException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (SocketException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (UnsupportedEncodingException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

时间: 2024-10-29 20:12:36

Android关于FTP文件上传和下载功能详解的相关文章

JavaWeb实现文件上传与下载实例详解_java

 在Web应用程序开发中,文件上传与下载功能是非常常用的功能,下面通过本文给大家介绍JavaWeb实现文件上传与下载实例详解. 对于文件上传,浏览器在上传的过程中是将文件以流的形式提交到服务器端的,如果直接使用Servlet获取上传文件的输入流然后再解析里面的请求参数是比较麻烦,所以一般选择采用apache的开源工具common-fileupload这个文件上传组件.这个common-fileupload上传组件的jar包可以去apache官网上面下载,common-fileupload是依赖于

MyBatis与SpringMVC相结合实现文件上传、下载功能_java

环境:maven+SpringMVC + Spring + MyBatis + MySql 本文主要说明如何使用input上传文件到服务器指定目录,或保存到数据库中:如何从数据库下载文件,和显示图像文件并实现缩放. 将文件存储在数据库中,一般是存文件的byte数组,对应的数据库数据类型为blob. 首先要创建数据库,此处使用MySql数据库. 注意:文中给出的代码多为节选重要片段,并不齐全. 1. 前期准备 使用maven创建一个springMVC+spring+mybatis+mysql的项目

基于BootStrap Metronic开发框架经验小结【五】Bootstrap File Input文件上传插件的用法详解_javascript技巧

Bootstrap文件上传插件File Input是一个不错的文件上传控件,但是搜索使用到的案例不多,使用的时候,也是一步一个脚印一样摸着石头过河,这个控件在界面呈现上,叫我之前使用过的Uploadify 好看一些,功能也强大些,本文主要基于我自己的框架代码案例,介绍其中文件上传插件File Input的使用. 1.文件上传插件File Input介绍 这个插件主页地址是:http://plugins.krajee.com/file-input,可以从这里看到很多Demo的代码展示:http:/

C#实现文件上传与下载功能实例_C#教程

最近学习了 C#实现文件上传与下载,现在分享给大家. 1.C#文件上传 创建MyUpload.htm页面,用于测试 <form name="form1" method="post" action="UploadFile.aspx" id="form1" enctype="multipart/form-data"> <input type="file" id="

拥有网页版小U盘 ASP.NET实现文件上传与下载功能_实用技巧

今天看到了一篇不错的文章,就拿来一起分享一下吧. 实现的是文件的上传与下载功能. 关于文件上传: 谈及文件上传到网站上,首先我们想到的就是通过什么上传呢?在ASP.NET中,只需要用FileUpload控件即可完成,但是默认上传4M大小的数据,当然了你可以在web.config文件中进行修改,方式如下: <system.web> <httpRuntime executionTimeout="240" maxRequestLength="20480"

SpringMVC文件上传的配置实例详解_java

记述一下步骤以备查. 准备工作: 需要把Jakarta Commons FileUpload及Jakarta Commons io的包放lib里. 我这边的包是: commons-fileupload-1.1.1.jar commons-io-1.3.2.jar 然后在spring-servlet.xml进行multipartResolver配置,不配置好上传会不好用. <bean id="multipartResolver" class="org.springfram

JavaWeb文件上传与下载功能解析_java

在开发过程中文件的上传下载很常用.这里简单的总结一下: 1.文件上传必须满足的条件: a. 页面表单的method必须是post 因为get传送的数据太小了 b. 页面表单的enctype必须是multipart/form-data类型的 c. 表单中提供上传输入域 代码细节: 客户端表单中:<form enctype="multipart/form-data"/> (如果没有这个属性,则服务端读取的文件路径会因为浏览器的不同而不同) 服务端ServletInputStre

JS文件上传神器bootstrap fileinput详解_javascript技巧

Bootstrap FileInput插件功能如此强大,完全没有理由不去使用,但是国内很少能找到本插件完整的使用方法,于是本人去其官网翻译了一下英文说明文档放在这里供英文不好的同学勉强查阅.另外附上一段调用方发和servlet端的接收代码,未完待续. 引言: 一个强化的HTML5 文件输入插件,适用于Bootstrap 3.x.本插件对多种类型的文件提供文件预览,并且提供了多选等功能.本插件还提供给你一个简单的方式去安装一个先进的文件选择/上传控制版本去配合Bootstrap CSS3样式.通过

jQuery文件上传控件 Uploadify 详解_jquery

基于jquery的文件上传控件,支持ajax无刷新上传,多个文件同时上传,上传进行进度显示,删除已上传文件. 要求使用jquery1.4或以上版本,flash player 9.0.24以上. 有两个版本,一个用flash,一个是html5.html5的需要付费~所以这里只说flash版本的用法. 官网:http://www.uploadify.com/ 控件截图: 用法: 首先引用下面的文件 <link rel="stylesheet" type="text/css&