Uses of Enum Class
org.miaixz.bus.extra.ssh.provider.jsch.JschSftp.Mode
Packages that use JschSftp.Mode
-
Uses of JschSftp.Mode in org.miaixz.bus.extra.ssh.provider.jsch
Methods in org.miaixz.bus.extra.ssh.provider.jsch that return JschSftp.ModeModifier and TypeMethodDescriptionstatic JschSftp.ModeReturns the enum constant of this class with the specified name.static JschSftp.Mode[]JschSftp.Mode.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.miaixz.bus.extra.ssh.provider.jsch with parameters of type JschSftp.ModeModifier and TypeMethodDescriptionJschSftp.put(InputStream srcStream, String destPath, com.jcraft.jsch.SftpProgressMonitor monitor, JschSftp.Mode mode) 将本地数据流上传到目标服务器,目标文件名为destPath,目标必须为文件JschSftp.put(String srcFilePath, String destPath, com.jcraft.jsch.SftpProgressMonitor monitor, JschSftp.Mode mode) 将本地文件上传到目标服务器,目标文件名为destPath,若destPath为目录,则目标文件名将与srcFilePath文件名相同。JschSftp.put(String srcFilePath, String destPath, JschSftp.Mode mode) 将本地文件上传到目标服务器,目标文件名为destPath,若destPath为目录,则目标文件名将与srcFilePath文件名相同。