Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 Java 直接将文件从 SMB 上传到 S3(AWS)。你能给我一些建议来解决这个问题吗?(不下载到本地并上传到 S3)
您可以从 SMB File 对象获取 InputStream,并从 S3 存储桶 File 获取 OutputStream。然而,这将遍历您自己的机器(即 SMB --InputStream--> Your app --OutputStream--> S3)。