< ! -- sftp操作工具类-- > < dependency> < groupId> com. jcraft< / groupId> < artifactId> jsch< / artifactId> < version> 0.1 .54 < / version> < / dependency>
package com. example. demo. util; import com. jcraft. jsch. * ;
import lombok. extern . slf4j. Slf4j; import java. io. * ;
import java. util. Properties;
@Slf4j
public class SftpUtil { private Session session = null ; private ChannelSftp channel = null ; private String host; private int port; private int timeout; private String username; private String password; public SftpUtil ( String host, int port, int timeout, String username, String password) { this . host = host; this . port = port; this . timeout = timeout; this . username = username; this . password = password; } public boolean login ( ) { try { JSch jsch = new JSch ( ) ; session = jsch. getSession ( username, host, port) ; if ( password != null ) { session. setPassword ( password) ; } Properties config = new Properties ( ) ; config. put ( "StrictHostKeyChecking" , "no" ) ; session. setConfig ( config) ; session. setTimeout ( timeout) ; session. connect ( ) ; log. debug ( "sftp session connected" ) ; log. debug ( "opening channel" ) ; channel = ( ChannelSftp) session. openChannel ( "sftp" ) ; channel. connect ( ) ; log. debug ( "connected successfully" ) ; return true ; } catch ( JSchException e) { log. error ( "sftp login failed" , e) ; return false ; } } public void logout ( ) { if ( channel != null ) { channel. quit ( ) ; channel. disconnect ( ) ; } if ( session != null ) { session. disconnect ( ) ; } log. debug ( "logout successfully" ) ; } public boolean uploadFile ( String remotePath, String remoteFileName, String localPath, String localFileName) { FileInputStream in = null ; try { System. out . println ( remotePath) ; createDir ( remotePath) ; File file = new File ( localPath + localFileName) ; in = new FileInputStream ( file) ; channel. put ( in , remoteFileName) ; return true ; } catch ( FileNotFoundException e) { e. printStackTrace ( ) ; } catch ( SftpException e) { e. printStackTrace ( ) ; } finally { if ( in != null ) { try { in . close ( ) ; } catch ( IOException e) { e. printStackTrace ( ) ; } } } return false ; } public boolean bacthUploadFile ( String remotePath, String localPath, boolean isDel) { try { File file = new File ( localPath) ; File[ ] files = file. listFiles ( ) ; for ( int i = 0 ; i < files. length; i++ ) { if ( files[ i] . isFile ( ) && files[ i] . getName ( ) . indexOf ( "bak" ) == - 1 ) { synchronized ( remotePath) { createDir ( remotePath) ; if ( this . uploadFile ( remotePath, files[ i] . getName ( ) , localPath, files[ i] . getName ( ) ) && isDel) { deleteFile ( localPath + files[ i] . getName ( ) ) ; } } } } return true ; } catch ( Exception e) { e. printStackTrace ( ) ; } finally { channel. disconnect ( ) ; } return false ; } public boolean downloadFile ( String remotePath, String remoteFileName, String localPath, String localFileName) { try { channel. cd ( remotePath) ; File file = new File ( localPath + localFileName) ; mkdirs ( localPath + localFileName) ; channel. get ( remoteFileName, new FileOutputStream ( file) ) ; return true ; } catch ( FileNotFoundException e) { e. printStackTrace ( ) ; } catch ( SftpException e) { e. printStackTrace ( ) ; } return false ; } public boolean createDir ( String createpath) { try { if ( isDirExist ( createpath) ) { channel. cd ( createpath) ; log. info ( createpath) ; return true ; } String pathArry[ ] = createpath. split ( "/" ) ; StringBuffer filePath = new StringBuffer ( "/" ) ; for ( String path : pathArry) { if ( path. equals ( "" ) ) { continue ; } filePath. append ( path + "/" ) ; createpath = filePath. toString ( ) ; if ( isDirExist ( createpath) ) { channel. cd ( createpath) ; } else { channel. mkdir ( createpath) ; channel. cd ( createpath) ; } } channel. cd ( createpath) ; return true ; } catch ( SftpException e) { e. printStackTrace ( ) ; } return false ; } public boolean isDirExist ( String directory) { boolean isDirExistFlag = false ; try { SftpATTRS sftpATTRS = channel. lstat ( directory) ; isDirExistFlag = true ; return sftpATTRS. isDir ( ) ; } catch ( Exception e) { if ( e. getMessage ( ) . toLowerCase ( ) . equals ( "no such file" ) ) { isDirExistFlag = false ; } } return isDirExistFlag; } public boolean deleteFile ( String filePath) { File file = new File ( filePath) ; if ( ! file. exists ( ) ) { return false ; } if ( ! file. isFile ( ) ) { return false ; } return file. delete ( ) ; } public void mkdirs ( String path) { File f = new File ( path) ; String fs = f. getParent ( ) ; f = new File ( fs) ; if ( ! f. exists ( ) ) { f. mkdirs ( ) ; } }
}