Android關(guān)于FTP文件上傳和下載功能詳解
本文實(shí)例為大家分享了Android九宮格圖片展示的具體代碼,供大家參考,具體內(nèi)容如下
此篇博客為整理文章,供大家學(xué)習(xí)。
1.首先下載commons-net jar包,可以百度下載。
FTP的文件上傳和下載的工具類(lèi):
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服務(wù)器
public synchronized boolean connect() throws Exception {
boolean bool = false;
if (ftpClient.isConnected()) {//判斷是否已登陸
ftpClient.disconnect();
}
ftpClient.setDataTimeout(20000);//設(shè)置連接超時(shí)時(shí)間
ftpClient.setControlEncoding("utf-8");
ftpClient.connect("ip地址", 端口);
if (FTPReply.isPositiveCompletion(ftpClient.getReplyCode())) {
if (ftpClient.login("用戶名", "密碼")) {
bool = true;
System.out.println("ftp連接成功");
}
}
return bool;
}
// 創(chuàng)建文件夾
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;
}
// 實(shí)現(xiàn)上傳文件的功能
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); // 如果文件夾不存在,創(chuàng)建文件夾
System.out.println("服務(wù)器文件存放路徑:" + serverPath + localFile.getName());
String fileName = localFile.getName();
// 如果本地文件存在,服務(wù)器文件也在,上傳文件,這個(gè)方法中也包括了斷點(diǎn)上傳
long localSize = localFile.length(); // 本地文件的長(zhǎng)度
FTPFile[] files = ftpClient.listFiles(fileName);
long serverSize = 0;
if (files.length == 0) {
System.out.println("服務(wù)器文件不存在");
serverSize = 0;
} else {
serverSize = files[0].getSize(); // 服務(wù)器文件的長(zhǎng)度
}
if (localSize <= serverSize) {
if (ftpClient.deleteFile(fileName)) {
System.out.println("服務(wù)器文件存在,刪除文件,開(kāi)始重新上傳");
serverSize = 0;
}
}
RandomAccessFile raf = new RandomAccessFile(localFile, "r");
// 進(jìn)度
long step = localSize / 100;
long process = 0;
long currentSize = 0;
// 好了,正式開(kāi)始上傳文件
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("上傳進(jìn)度:" + process);
}
}
}
output.flush();
output.close();
raf.close();
if (ftpClient.completePendingCommand()) {
System.out.println("文件上傳成功");
return true;
} else {
System.out.println("文件上傳失敗");
return false;
}
}
// 實(shí)現(xiàn)下載文件功能,可實(shí)現(xiàn)斷點(diǎn)下載
public synchronized boolean downloadFile(String localPath, String serverPath)
throws Exception {
// 先判斷服務(wù)器文件是否存在
FTPFile[] files = ftpClient.listFiles(serverPath);
if (files.length == 0) {
System.out.println("服務(wù)器文件不存在");
return false;
}
System.out.println("遠(yuǎn)程文件存在,名字為:" + files[0].getName());
localPath = localPath + files[0].getName();
// 接著判斷下載的文件是否能斷點(diǎn)下載
long serverSize = files[0].getSize(); // 獲取遠(yuǎn)程文件的長(zhǎng)度
File localFile = new File(localPath);
long localSize = 0;
if (localFile.exists()) {
localSize = localFile.length(); // 如果本地文件存在,獲取本地文件的長(zhǎng)度
if (localSize >= serverSize) {
System.out.println("文件已經(jīng)下載完了");
File file = new File(localPath);
file.delete();
System.out.println("本地文件存在,刪除成功,開(kāi)始重新下載");
return false;
}
}
// 進(jìn)度
long step = serverSize / 100;
long process = 0;
long currentSize = 0;
// 開(kāi)始準(zhǔn)備下載文件
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("下載進(jìn)度:" + process);
}
}
}
out.flush();
out.close();
input.close();
// 此方法是來(lái)確保流處理完畢,如果沒(méi)有此方法,可能會(huì)造成現(xiàn)程序死掉
if (ftpClient.completePendingCommand()) {
System.out.println("文件下載成功");
return true;
} else {
System.out.println("文件下載失敗");
return false;
}
}
// 如果ftp上傳打開(kāi),就關(guān)閉掉
public void closeFTP() throws Exception {
if (ftpClient.isConnected()) {
ftpClient.disconnect();
}
}
}
具體實(shí)現(xiàn)看代碼注釋寫(xiě)的很詳細(xì)。
一.Android中FTP文件上傳代碼:
// 上傳例子
private void ftpUpload() {
new Thread() {
public void run() {
try {
System.out.println("正在連接ftp服務(wù)器....");
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服務(wù)器....");
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();
}
自己之前做項(xiàng)目的時(shí)候?qū)戇^(guò)的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;// 文件服務(wù)器存儲(chǔ)路徑
private String serverAddress;// 服務(wù)器地址
private String ftpUserName;// ftp賬號(hào)
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)) {// 如果登錄成功
// 設(shè)置上傳目錄
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();
}
}
}
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
深入剖析Android的Volley庫(kù)中的圖片加載功能
這篇文章主要介紹了Android的Volley框架中的圖片加載功能,從源碼剖析了Volley加載圖片時(shí)的請(qǐng)求隊(duì)列處理等方面,需要的朋友可以參考下2016-04-04
android自定義ViewPager水平滑動(dòng)彈性效果
這篇文章主要為大家詳細(xì)介紹了android自定義ViewPager水平滑動(dòng)彈性,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-12-12
Android 通過(guò)onDraw實(shí)現(xiàn)在View中繪圖操作的示例
以下是對(duì)Android通過(guò)onDraw實(shí)現(xiàn)在View中繪圖操作的示例代碼進(jìn)行了詳細(xì)的分析介紹,需要的朋友可以過(guò)來(lái)參考下2013-07-07
android中實(shí)現(xiàn)指針滑動(dòng)的動(dòng)態(tài)效果方法
本次實(shí)現(xiàn)的是類(lèi)似于墨跡天氣中軌跡圖片上指針隨著數(shù)值滾動(dòng)滑動(dòng)的效果,基本思路是開(kāi)啟線程,控制指針?biāo)诘膇mageview控件的padding屬性。2013-03-03
Android 運(yùn)用@JvmName解決函數(shù)簽名沖突問(wèn)題詳解
JvmName注解是Kotlin提供的一個(gè)可以變更編譯器輸出的注解,這里簡(jiǎn)單的介紹一下其使用規(guī)則,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步2022-07-07
Android實(shí)現(xiàn)TextView字符串關(guān)鍵字變色的方法
這篇文章顯示給大家介紹了字符串中關(guān)鍵字變色的實(shí)現(xiàn)方法,而后又拓展介紹了在Android中如何實(shí)現(xiàn)搜索關(guān)鍵字變色,相信對(duì)各位Android開(kāi)發(fā)者們具有一定的參考借鑒價(jià)值,感興趣的朋友們下面來(lái)一起看看吧。2016-10-10
Android游戲開(kāi)發(fā)學(xué)習(xí)②焰火綻放效果實(shí)現(xiàn)方法
這篇文章主要介紹了Android游戲開(kāi)發(fā)學(xué)習(xí)②焰火綻放效果實(shí)現(xiàn)方法,以實(shí)例形式詳細(xì)分析了Android中粒子對(duì)象類(lèi)Particle類(lèi)和粒子集合類(lèi)ParticleSet類(lèi)及物理引擎ParticleThread類(lèi) 的使用技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-10-10
flutter 路由機(jī)制的實(shí)現(xiàn)
本文主要介紹 flutter 中的路由實(shí)現(xiàn)原理,包括初始化時(shí)的頁(yè)面加載、切換頁(yè)面的底層機(jī)制等。具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-07-07
基于Flutter制作一個(gè)心碎動(dòng)畫(huà)特效
這篇文章主要為大家介紹了如何利用Flutter制作一個(gè)心碎動(dòng)畫(huà)特效,文中的示例代碼講解詳細(xì),對(duì)我們學(xué)習(xí)Flutter有一定幫助,感興趣的可以了解一下2022-04-04

