VFS 上傳檔案到sftp 報錯 包含中文路徑 或者中文檔名稱
阿新 • • 發佈:2018-11-16
之前用Apache commons-vfs工具進行ftp操作(FTP伺服器是 FileZilla Server)
上傳本地檔案 到 ftp伺服器上,如果檔名稱 包含 中文 報錯
org.apache.commons.vfs2.FileSystemException: Could not put FTP file to “e:\紅黃藍股價暴跌.docx” to
sftp://dsideal:***@192.168.1.168/紅黃藍股價暴跌.docx
1、有可能是 登入FTP使用者名稱沒有許可權 建立檔案 需要登入使用者有建立檔案的許可權
2、需要 修改編碼 從utf-8 到 ISO-8859-1
private static FileSystemManager fsManager = null; static { try { fsManager = VFS.getManager(); } catch (Exception e) { e.printStackTrace(); } } //需要 ftp 伺服器使用者有 新增,修改 刪除檔案的許可權 public void upfile(File file) { try { initConfig(); String inFilePath=ftpPathFull; // Create local file object FileObject localFile = fsManager.resolveFile(file.getAbsolutePath()); // Create remote file object String sftpUri= inFilePath+file.getName(); String sftpUriiso= new String(sftpUri.getBytes("UTF-8"),"ISO-8859-1"); FileObject remoteFile = fsManager.resolveFile(sftpUriiso); // 如果檔案不存在,則建立檔案 if (!remoteFile.exists()) { remoteFile.createFile(); } remoteFile.copyFrom(localFile, Selectors.SELECT_SELF); logger.info("上傳檔案成功:"+file.getName()); } catch (Exception e) { e.printStackTrace(); logger.error(e.getMessage()); logger.error(e.getLocalizedMessage(),e); } }