Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

JAVA FTP uploads files

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

The following shows uploading files to the server through http:

/ * *

File upload interface @ param request [module] [filename] @ param response

@ throws IOException * /

@ RequestMapping ("/ upload") br/ > * /

@ RequestMapping ("/ upload")

String module=params.get ("module"); / / request module, put the files requested by the module into the impassable directory

Log.info ("upload method param:" + module)

If (! validPublicModule (module)) {

ReponseUtils.renderJsonp (request, response, RespObj.failedObj ("upload directory is incorrect"))

Return

}

/ / Open the connection FTP

FtpUtils ftp=FtpUtils.getInstance ()

InputStream input = null

If (filename! = null) {

Log.info ("ftp opern sucess:")

String newFileName=newfileName (filename)

Input=filename.getInputStream ()

String ftppath=getDirPath (module)

Boolean isfalg=ftp.uploadFile (input, newFileName, ftppath)

If (! isfalg) {

ReponseUtils.renderJsonp (request, response, RespObj.failedObj ("file upload exception")

Return

}

RespObj obj = RespObj.successObj ()

String url=ftppath+File.separator+newFileName

Log.info ("ftp url:" + url)

Obj.setData (url)

Obj.setErrorMsg ("sucess")

ReponseUtils.renderJsonp (request, response, obj)

}

}

FTP utility class: package com.ejauto.core.ftp

Import java.io.ByteArrayOutputStream

Import java.io.File

Import java.io.FileInputStream

Import java.io.FileOutputStream

Import java.io.IOException

Import java.io.InputStream

Import javax.servlet.ServletOutputStream

Import javax.servlet.http.HttpServletResponse

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 org.apache.log4j.Logger

Import com.ejauto.core.utils.Constants

Public class FtpUtils {

Logger log = Logger.getLogger (FtpUtils.class); private FTPClient ftpClient = null;private String server;private int port;private String userName;private String userPassword;private FtpUtils (String server,int port,String userName,String userPassword) {this.server = server; this.port = port; this.userName = userName; this.userPassword = userPassword } / * Connect server * @ return connection true: successful, false: failed * / public boolean open () {if (ftpClient! = null & & ftpClient.isConnected ()) {return true;} try {ftpClient = new FTPClient (); / / Connect ftpClient.connect (this.server, this.port); ftpClient.login (this.userName, this.userPassword) SetFtpClient (ftpClient); / / check whether the connection is successful int reply = ftpClient.getReplyCode (); if (! FTPReply.isPositiveCompletion (reply)) {this.close (); System.err.println ("FTP server refused connection."); / / System.exit (1);} log.info ("open FTP success:" + this.server + ") Port: "+ this.port +"; name: "+ this.userName +"; pwd: "+ this.userPassword); ftpClient.setFileType (FTP.BINARY_FILE_TYPE); / / set upload mode .binally or ascii return true;} catch (Exception ex) {this.close (); ex.printStackTrace (); return false }} / * switch to parent directory * @ return switch result true: successful, false: failed * / @ SuppressWarnings ("unused") private boolean changeToParentDir () {try {return ftpClient.changeToParentDirectory ();} catch (IOException e) {e.printStackTrace (); return false }} / * change the current directory to the specified directory * @ param dir destination directory * @ return switch result true: successful, false: failed * / @ SuppressWarnings ("unused") private boolean cd (String dir) {try {return ftpClient.changeWorkingDirectory (dir);} catch (IOException e) {e.printStackTrace (); return false }} / * get all the file names under the directory * * @ param filePath specified directory * @ return file list, or null * / @ SuppressWarnings ("unused") private FTPFile [] getFileList (String filePath) {try {return ftpClient.listFiles (filePath);} catch (IOException e) {e.printStackTrace (); return null }} / * switching working directory * @ param ftpPath destination directory * @ return switching result * / public boolean changeDir (String ftpPath) {if (! ftpClient.isConnected ()) {return false;} try {/ / unify the slashes in the path char [] chars = ftpPath.toCharArray (); StringBuffer sbStr = new StringBuffer (256); for (int I = 0; I

< chars.length; i++) { if ('\\' == chars[i]) { sbStr.append('/'); } else { sbStr.append(chars[i]); } } ftpPath = sbStr.toString(); if (ftpPath.indexOf('/') == -1) { // 只有一层目录 ftpClient.changeWorkingDirectory(new String(ftpPath.getBytes(), "iso-8859-1")); } else { // 多层目录循环创建 String[] paths = ftpPath.split("/"); for (int i = 0; i < paths.length; i++) { ftpClient.changeWorkingDirectory(new String(paths[i].getBytes(), "iso-8859-1")); } } return true; } catch (Exception e) { e.printStackTrace(); return false; }}/** * 循环创建目录,并且创建完目录后,设置工作目录为当前创建的目录下 * @param ftpPath 需要创建的目录 * @return */public boolean mkDir(String ftpPath) { if (!ftpClient.isConnected()) { return false; } try { // 将路径中的斜杠统一 char[] chars = ftpPath.toCharArray(); StringBuffer sbStr = new StringBuffer(256); for (int i = 0; i < chars.length; i++) { if ('\\' == chars[i]) { sbStr.append('/'); } else { sbStr.append(chars[i]); } } ftpPath = sbStr.toString(); if (ftpPath.indexOf('/') == -1) { // 只有一层目录 ftpClient.makeDirectory(new String(ftpPath.getBytes(), "iso-8859-1")); ftpClient.changeWorkingDirectory(new String(ftpPath.getBytes(), "iso-8859-1")); } else { // 多层目录循环创建 String[] paths = ftpPath.split("/"); for (int i = 0; i < paths.length; i++) { ftpClient.makeDirectory(new String(paths[i].getBytes(), "iso-8859-1")); ftpClient.changeWorkingDirectory(new String(paths[i].getBytes(), "iso-8859-1")); } } return true; } catch (Exception e) { e.printStackTrace(); return false; }}/** * 上传文件到FTP服务器 * @param localDirectoryAndFileName 本地文件目录和文件名 * @param ftpFileName 上传到服务器的文件名 * @param ftpDirectory FTP目录如:/path2/pathb2/,如果目录不存在会自动创建目录 * @return */public boolean uploadFile(InputStream fis, String ftpFileName, String ftpDirectory) { if (!ftpClient.isConnected()) { return false; } boolean flag = false; if (ftpClient != null) { //File srcFile = new File(localDirectoryAndFileName); //InputStream fis = null; try { //fis = new InputStream(srcFile); // 创建目录 this.mkDir(ftpDirectory); ftpClient.setBufferSize(100000); ftpClient.setControlEncoding("UTF-8"); // 设置文件类型(二进制) ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE); ftpClient.enterLocalPassiveMode(); // 上传 log.error("ftpClient.storeFile:"); flag = ftpClient.storeFile(new String(ftpFileName.getBytes("UTF-8"),"iso-8859-1"), fis); } catch (Exception e) { this.close(); e.printStackTrace(); log.error("Exception:"+e.getMessage()); return false; } finally { try { fis.close(); } catch (IOException e) { e.printStackTrace(); } } } return flag;}/** * 从FTP服务器上下载文件 * @param ftpDirectoryAndFileName ftp服务器文件路径,以/dir形式开始 * @param localDirectoryAndFileName 保存到本地的目录 * @return */public boolean get(String ftpDirectoryAndFileName, String localDirectoryAndFileName) { if (!ftpClient.isConnected()) { return false; } ftpClient.enterLocalPassiveMode(); // Use passive mode as default try { // 将路径中的斜杠统一 char[] chars = ftpDirectoryAndFileName.toCharArray(); StringBuffer sbStr = new StringBuffer(256); for (int i = 0; i < chars.length; i++) { if ('\\' == chars[i]) { sbStr.append('/'); } else { sbStr.append(chars[i]); } } ftpDirectoryAndFileName = sbStr.toString(); String filePath = ftpDirectoryAndFileName.substring(0, ftpDirectoryAndFileName.lastIndexOf("/")); String fileName = ftpDirectoryAndFileName.substring(ftpDirectoryAndFileName.lastIndexOf("/") + 1); this.changeDir(filePath); ftpClient.retrieveFile(new String(fileName.getBytes(), "iso-8859-1"), new FileOutputStream(localDirectoryAndFileName)); // download // file //System.out.println(ftpClient.getReplyString()); // check result //System.out.println("从ftp服务器上下载文件:" + ftpDirectoryAndFileName + ", 保存到:" + localDirectoryAndFileName); return true; } catch (IOException e) { e.printStackTrace(); return false; }}/** * 返回FTP目录下的文件列表 * @param pathName * @return */public String[] getFileNameList(String pathName) { try { return ftpClient.listNames(pathName); } catch (IOException e) { e.printStackTrace(); return null; }}/** * 删除FTP上的文件 * @param ftpDirAndFileName 路径开头不能加/,比如应该是test/filename1 * @return */public boolean deleteFile(String ftpDirAndFileName) { if (!ftpClient.isConnected()) { return false; } try { return ftpClient.deleteFile(ftpDirAndFileName); } catch (IOException e) { e.printStackTrace(); return false; }}/** * 删除FTP目录 * @param ftpDirectory * @return */public boolean deleteDirectory(String ftpDirectory) { if (!ftpClient.isConnected()) { return false; } try { return ftpClient.removeDirectory(ftpDirectory); } catch (IOException e) { e.printStackTrace(); return false; }}/** * 关闭链接 */public void close() { try { if (ftpClient != null && ftpClient.isConnected()) { ftpClient.disconnect(); } System.out.println("成功关闭连接,服务器ip:" + this.server + ", 端口:" + this.port); } catch (Exception e) { e.printStackTrace(); }}public FTPClient getFtpClient() { return ftpClient;}public void setFtpClient(FTPClient ftpClient) { this.ftpClient = ftpClient;}public void download(HttpServletResponse response,String ftpDirectoryAndFileName){ if (!ftpClient.isConnected()) { return ; } ftpClient.enterLocalPassiveMode(); // Use passive mode as default try { // 将路径中的斜杠统一 char[] chars = ftpDirectoryAndFileName.toCharArray(); StringBuffer sbStr = new StringBuffer(256); for (int i = 0; i < chars.length; i++) { if ('\\' == chars[i]) { sbStr.append('/'); } else { sbStr.append(chars[i]); } } ftpDirectoryAndFileName = sbStr.toString(); String filePath = ftpDirectoryAndFileName.substring(0, ftpDirectoryAndFileName.lastIndexOf("/")); String fileName = ftpDirectoryAndFileName.substring(ftpDirectoryAndFileName.lastIndexOf("/") + 1); this.changeDir(filePath); InputStream inputStream = ftpClient.retrieveFileStream(new String(fileName.getBytes(), "iso-8859-1")); ServletOutputStream outputStream = null; try { response.setHeader("content-disposition", "attachment;filename="+fileName); //通知浏览器下载文件类型,解决部分浏览器下载APK为.htm格式 response.setContentType("application/octet-stream"); outputStream = response.getOutputStream(); byte[] buffer = new byte[8192]; int len = inputStream.read(buffer); while (len != -1) { outputStream.write(buffer, 0, len); len = inputStream.read(buffer); } outputStream = response.getOutputStream(); ByteArrayOutputStream swapStream = new ByteArrayOutputStream(); byte[] buff = new byte[100]; int rc = 0; while ((rc = inputStream.read(buff, 0, 100)) >

0) {swapStream.write (buff, 0, rc);} byte [] in2b = swapStream.toByteArray (); outputStream.write (in2b);} catch (IOException e) {e.printStackTrace () } finally {try {if (inputStreamstreams null) {inputStream.close ();} if (outputStreamstreams invalid null) {outputStream.flush (); outputStream.close () }} catch (IOException e) {e.printStackTrace ();} catch (Exception e) {log.info (e.getMessage ()); e.printStackTrace ();}}

Public void downloadImg (HttpServletResponse response,String ftpDirectoryAndFileName) {

If (! ftpClient.isConnected ()) {return;} ftpClient.enterLocalPassiveMode (); / / Use passive mode as default try {/ / unifies the slashes in the path char [] chars = ftpDirectoryAndFileName.toCharArray (); StringBuffer sbStr = new StringBuffer (256); for (int I = 0; I

< chars.length; i++) { if ('\\' == chars[i]) { sbStr.append('/'); } else { sbStr.append(chars[i]); } } ftpDirectoryAndFileName = sbStr.toString(); String filePath = ftpDirectoryAndFileName.substring(0, ftpDirectoryAndFileName.lastIndexOf("/")); String fileName = ftpDirectoryAndFileName.substring(ftpDirectoryAndFileName.lastIndexOf("/") + 1); this.changeDir(filePath); InputStream inputStream = ftpClient.retrieveFileStream(new String(fileName.getBytes(), "iso-8859-1")); ServletOutputStream outputStream = null; try { outputStream = response.getOutputStream(); byte[] buffer = new byte[8192]; int len = inputStream.read(buffer); while (len != -1) { outputStream.write(buffer, 0, len); len = inputStream.read(buffer); } outputStream = response.getOutputStream(); ByteArrayOutputStream swapStream = new ByteArrayOutputStream(); byte[] buff = new byte[100]; int rc = 0; while ((rc = inputStream.read(buff, 0, 100)) >

0) {swapStream.write (buff, 0, rc);} byte [] in2b = swapStream.toByteArray (); outputStream.write (in2b);} catch (IOException e) {e.printStackTrace () } finally {try {if (inputStreamstreams null) {inputStream.close ();} if (outputStreamstreams invalid null) {outputStream.flush (); outputStream.close () } catch (IOException e) {e.printStackTrace ();} catch (Exception e) {log.info (e.getMessage ()); e.printStackTrace ();}} public boolean upload (InputStream fis, String ftpDirectory) {String ftpFileName = ftpDirectory.substring (ftpDirectory.indexOf ("/")); return uploadFile (fis, ftpFileName, ftpDirectory) } public static FtpUtils getInstance () {String host = Constants.FTP_HOST; int port = Integer.valueOf (Constants.FTP_PORT). IntValue (); String user = Constants.FTP_USERNAME; String pwd = Constants.FTP_PWD; FtpUtils f = new FtpUtils (host, port, user, pwd); if (f.open ()) {return f;} return null;} public static void main (String [] args) {FileInputStream input = null FtpUtils f=FtpUtils.getInstance ();}

Public String getFilePath (HttpServletResponse response,String fileName) throws IOException {

If (! ftpClient.isConnected ()) {return ";} ftpClient.enterLocalPassiveMode (); / / Use passive mode as default ftpClient.getPassiveLocalIPAddress (); System.out.println (" getPassiveLocalIPAddress: "+ ftpClient.getLocalAddress ()); String url=" ftp://"+ftpClient.getLocalAddress()+File.separator+fileName;// splicing ftp path return url;}

}

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report