一区二区三区日韩精品-日韩经典一区二区三区-五月激情综合丁香婷婷-欧美精品中文字幕专区

分享

基于FTP4J組件的FTP操作客戶端

 不老松 2020-02-21
/** * FTP下載文件到本地一個(gè)文件夾,如果本地文件夾不存在,則創(chuàng)建必要的目錄結(jié)構(gòu) * @param client FTP客戶端 * @param remoteFileName FTP文件 * @param localFolderPath 存的本地目錄 */ public static void download(FTPClient client, String remoteFileName, String localFolderPath) { try { int x = isExist(client, remoteFileName); MyFtpListener listener = MyFtpListener.instance('download'); File localFolder = new File(localFolderPath); if (!localFolder.exists()) { localFolder.mkdirs(); } if (x == FTPFile.TYPE_FILE) { String localfilepath = formatPath4File(localFolderPath+File.separator+new File(remoteFileName).getName()); if (listener != null) { client.download(remoteFileName, new File(localfilepath), listener); }else{ client.download(remoteFileName, new File(localfilepath)); } } } catch (Exception e) { System.out.println('###[Error] FTPToolkit.download()'+e.getMessage()); } } //遞歸創(chuàng)建層級(jí)目錄(坑爹的問題,原本想著遞歸處理,后來才發(fā)現(xiàn)如此的簡(jiǎn)單)private static void mkDirs(FTPClient client,String p) throws Exception { if (null == p) { return;} if(p != null && !''.equals(p) && !'/'.equals(p)){ String ps = ''; for(int i=0;i<p.split('/').length;i++){ ps += p.split('/')[i]+'/'; if (!isDirExist(client,ps)) { client.createDirectory(ps);// 創(chuàng)建目錄 client.changeDirectory(ps);// 進(jìn)入創(chuàng)建的目錄 System.out.println('>>>>> create directory:['+i+']['+ps+']'); }else{ //System.out.println('select directory:['+i+']['+ps+']'); } } }}//檢查目錄是否存在private static boolean isDirExist(FTPClient client,String dir) { try { client.changeDirectory(dir); } catch (Exception e) { return false; } return true;}/** * FTP上傳本地文件到FTP的一個(gè)目錄下 * @param client FTP客戶端 * @param localfilepath 本地文件路徑 * @param remoteFolderPath FTP上傳目錄 */ public static void upload(FTPClient client, String localfilepath, String remoteFolderPath) { try { mkDirs(client,remoteFolderPath); File localfile = new File(localfilepath); upload(client, localfile, remoteFolderPath); } catch (Exception e) { System.out.println('###[Error] FTPToolkit.upload()'+e.getMessage()); } } /** * FTP上傳本地文件到FTP的一個(gè)目錄下 * @param client FTP客戶端 * @param localfile 本地文件 * @param remoteFolderPath FTP上傳目錄 */ public static void upload(FTPClient client, File localfile, String remoteFolderPath) { remoteFolderPath = formatPath4FTP(remoteFolderPath); MyFtpListener listener = MyFtpListener.instance('upload'); try { client.changeDirectory(remoteFolderPath); if (listener != null) { client.upload(localfile, listener); }else{ client.upload(localfile); } client.changeDirectory('/'); } catch (Exception e) { System.out.println('###[Error] FTPToolkit.upload()'+e.getMessage()); } } /** * 批量上傳本地文件到FTP指定目錄上 * @param client FTP客戶端 * @param localFilePaths 本地文件路徑列表 * @param remoteFolderPath FTP上傳目錄 */ public static void uploadListPath(FTPClient client, List<String> localFilePaths, String remoteFolderPath) { try { remoteFolderPath = formatPath4FTP(remoteFolderPath); client.changeDirectory(remoteFolderPath); MyFtpListener listener = MyFtpListener.instance('uploadListPath'); for (String path : localFilePaths) { File file = new File(path); if (listener != null) { client.upload(file, listener); }else { client.upload(file); } } client.changeDirectory('/'); } catch (Exception e) { System.out.println('###[Error] FTPToolkit.uploadListPath()'+e.getMessage()); } } /** * 批量上傳本地文件到FTP指定目錄上 * @param client FTP客戶端 * @param localFiles 本地文件列表 * @param remoteFolderPath FTP上傳目錄 */ public static void uploadListFile(FTPClient client, List<File> localFiles, String remoteFolderPath) { try { client.changeDirectory(remoteFolderPath); remoteFolderPath = formatPath4FTP(remoteFolderPath); MyFtpListener listener = MyFtpListener.instance('uploadListFile'); for (File file : localFiles) { if (listener != null){ client.upload(file, listener); }else{ client.upload(file); } } client.changeDirectory('/'); } catch (Exception e) { System.out.println('###[Error] FTPToolkit.uploadListFile() '+e.getMessage()); } } /** * 判斷一個(gè)FTP路徑是否存在,如果存在返回類型(FTPFile.TYPE_DIRECTORY=1、FTPFile.TYPE_FILE=0、FTPFile.TYPE_LINK=2) * @param client FTP客戶端 * @param remotePath FTP文件或文件夾路徑 * @return 存在時(shí)候返回類型值(文件0,文件夾1,連接2),不存在則返回-1 */ public static int isExist(FTPClient client, String remotePath) { int x = -1; try { remotePath = formatPath4FTP(remotePath); FTPFile[] list = client.list(remotePath); if (list.length > 1){ x = 1; }else if (list.length == 1) { FTPFile f = list[0]; if (f.getType() == FTPFile.TYPE_DIRECTORY) { x = 1; } //假設(shè)推理判斷 String _path = remotePath + '/' + f.getName(); if(client.list(_path).length == 1){ x = 1; }else{ x = 0; } } else { client.changeDirectory(remotePath); x = 1; } } catch (Exception e) { x = -1; System.out.println('###[Error] FTPToolkit.isExist() '+e.getMessage()); } return x;} /** * 關(guān)閉FTP連接,關(guān)閉時(shí)候像服務(wù)器發(fā)送一條關(guān)閉命令 * @param client FTP客戶端 * @return 關(guān)閉成功,或者鏈接已斷開,或者鏈接為null時(shí)候返回true,通過兩次關(guān)閉都失敗時(shí)候返回false */ public static boolean closeConn(FTPClient client) { if (client == null) return true; if (client.isConnected()) { try { client.disconnect(true); return true; } catch (Exception e) { try { client.disconnect(false); } catch (Exception e1) {} } } return true; } //###---------------------------------------------------------------------/** * 格式化文件路徑,將其中不規(guī)范的分隔轉(zhuǎn)換為標(biāo)準(zhǔn)的分隔符,并且去掉末尾的文件路徑分隔符。 * 本方法操作系統(tǒng)自適應(yīng) * @param path 文件路徑 * @return 格式化后的文件路徑 */ public static String formatPath4File(String path) { String reg0 = '\\\\+'; String reg = '\\\\+|/+'; String temp = path.trim().replaceAll(reg0, '/'); temp = temp.replaceAll(reg, '/'); if (temp.length() > 1 && temp.endsWith('/')) { temp = temp.substring(0, temp.length() - 1); } temp = temp.replace('/', File.separatorChar); return temp; } /** * 格式化文件路徑,將其中不規(guī)范的分隔轉(zhuǎn)換為標(biāo)準(zhǔn)的分隔符 * 并且去掉末尾的'/'符號(hào)(適用于FTP遠(yuǎn)程文件路徑或者Web資源的相對(duì)路徑)。 * @param path 文件路徑 * @return 格式化后的文件路徑 */ public static String formatPath4FTP(String path) { String reg0 = '\\\\+'; String reg = '\\\\+|/+'; String temp = path.trim().replaceAll(reg0, '/'); temp = temp.replaceAll(reg, '/'); if (temp.length() > 1 && temp.endsWith('/')) { temp = temp.substring(0, temp.length() - 1); } return temp; } /** * 獲取FTP路徑的父路徑,但不對(duì)路徑有效性做檢查 * @param path FTP路徑 * @return 父路徑,如果沒有父路徑,則返回null */ public static String genParentPath4FTP(String path) { String f = new File(path).getParent(); if (f == null) { return null; }else { return formatPath4FTP(f); }} //###---------------------------------------------------------------------//獲取指定目錄下的文件public static File[] getPathFiles(String path){ File file = new File(path); if (file.isDirectory()) { File[] files = file.listFiles(); return files; } return null;}//刪除指定目錄下的臨時(shí)文件public static void deleteFiles(String path){ File file = new File(path); if (file.isDirectory()) { File[] files = file.listFiles(); for (int i = 0; i < files.length; i++) { //String name = files[i].getName(); //if(name.trim().toLowerCase().endsWith('_ftp.tmp')) { //System.out.println(name + '\t'); //} //清空臨時(shí)文件 _ftp.tmp files[i].delete(); } } }//截取文件名稱public static String getFileName(String fileName){ String fs = 'F'+System.currentTimeMillis(); try { if(fileName != null && !''.equals(fileName)){ if(fileName.lastIndexOf('/') > 0 && fileName.lastIndexOf('.') > 0){ fs = fileName.substring(fileName.lastIndexOf('/')+1); }else{ fs = fileName; } if(fs.length() >50){ fs = fs.substring(0,50); } return fs; }else{ return fs; } } catch (Exception e) { System.out.println('###[Error] FtpTools.getFileName()'+e.getMessage()); } return fs;}public static void main(String args[]) throws Exception { FTPClient f41 = FTPToolkit.ftpConn('129.2.8.31', 21, 'root', 'root31'); FTPClient f42 = FTPToolkit.ftpConn('129.2.8.32', 21, 'root', 'root32'); //InputStream in = FTPToolkit.fetchInputStream(f41,'/home/photofile/wenzi-003.jpg'); //FTPToolkit.uploadInputStream(f41,'/home/photofile/aa.jpg',in); //FTPToolkit.upload(f41, 'E:\\demo\\av1.jpg', '/home/photofile/10/20'); //FTPToolkit.download(f41, '/home/photofile/wenzi-100.jpg', 'E:\\'); //FTPToolkit.getlistFiles(f41,'/home/photofile'); //文件流對(duì)流讀取操作 List<String> ls = null;//FTPToolkit.getlistFileNames(f41,'/home/photofile'); if(ls != null && ls.size() >0){ InputStream in=null; for(int i =0;i<ls.size();i++){ //in = FTPToolkit.fetchInputStream(f41,ls.get(i)); if(in != null && in.available() > 0){ FTPToolkit.uploadInputStream(f42,'/home/wasadmin/photoSysTempFTP/'+getFileName(ls.get(i)),in); f41.deleteFile(ls.get(i)); } } //清空項(xiàng)目下的臨時(shí)文件 FTPToolkit.deleteFiles('ftptmp'); } FTPToolkit.closeConn(f41); FTPToolkit.closeConn(f42); }

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多

    千仞雪下面好爽好紧好湿全文| 麻豆91成人国产在线观看| 国产亚洲神马午夜福利| 婷婷一区二区三区四区| 日本黄色高清视频久久| 欧美日韩国产的另类视频| 欧美大胆女人的大胆人体| 在线一区二区免费的视频 | 久久精品福利在线观看| 成年午夜在线免费视频| 亚洲精品成人福利在线| 日韩精品一区二区三区含羞含羞草 | 国产一区日韩二区欧美| 欧美中文日韩一区久久| 男人和女人草逼免费视频 | 日韩国产中文在线视频| 国产精品一级香蕉一区| 欧美性高清一区二区三区视频 | 五月婷婷亚洲综合一区| 国语对白刺激高潮在线视频| 五月激情五月天综合网| 欧洲精品一区二区三区四区| 欧美又大又黄刺激视频| 欧美区一区二区在线观看| 免费在线播放不卡视频| 久久一区内射污污内射亚洲| 久久热在线视频免费观看| 亚洲精品深夜福利视频| 国产又粗又猛又爽又黄的文字| 一区二区三区日韩在线| 91欧美激情在线视频| 久草视频这里只是精品| 成人午夜视频在线播放| 国产成人亚洲综合色就色| 美女露小粉嫩91精品久久久| 国产精品二区三区免费播放心| 国产麻豆一线二线三线| 精品丝袜一区二区三区性色| 91福利免费一区二区三区| 欧美日韩精品人妻二区三区| 日韩中文高清在线专区|