压缩从 SFTP 服务器下载的文件
我正在开发一个项目,需要从 SFTP 服务器下载 2 个文件,使用时间戳名称将它们压缩并将其保存到我的本地服务器。另外,一旦检索到文件,我希望它发送一封电子邮件,表明它成功完成了作业或失败了。我正在使用 JSch 检索 SFTP 服务器,并且可以将文件保存在我的本地服务器中。谁能建议我应该如何编写代码来压缩文件并发送电子邮件。感谢您的帮助,我正在使用 Java 来完成这个小项目。
I am working on a project where I need to download 2 files from an SFTP server, zip them up with a timestamp name and save it to the my local server. Also, once the files are retrieved I want it to send an email that either it successfully completed the job or failed. I am using JSch for retrieveing the SFTP server and could save the files in my local server. Could anyone suggest how should I write my codes to zip the files and send an email. Any help appreciated and I am working with Java for this small project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ZipOutputStream
和 Java Mail 您应该能够执行您的操作想。我创建了一个示例 main 方法,它将主机、from 和 to 作为命令行参数。它假设您已经知道压缩文件名并发送一封附有 zip 的电子邮件。我希望这有帮助!Using
ZipOutputStream
and Java Mail you should be able to do what you want. I created a sample main method that takes in the host, from and to as command line arguments. It assumes you already know the zipped filenames and sends an email with the zip attached. I hope this helps!