Java图像上传存储在Amazon S3中
无法找到一些示例来展示我如何使用 Java 来允许用户将图像上传到 Amazon S3。
流程是:
用户位于带有文件输入表单元素的 HTML 表单上。
此表单将选定的图像提交到 Servlet。
此 Servlet 处理图像并将其存储在 S3 中。
有人知道任何好的链接/教程概述了执行此操作的示例代码吗?
Having trouble finding some examples showing how I can use Java to allow users to upload an image to Amazon S3.
The flow is:
User is on HTML form with file input form element.
This form submits the selected image to a Servlet.
This Servlet processes the image and stores it in S3.
Anyone know of any good links/tutorials that outline sample code to perform this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于第三点:
它的教程很简单。这是我正在使用的片段:
对于前两点 - 看看这个问题
For the 3rd point:
It's tutorial is simple. Here's a snippet I'm using:
For the previous two points - look at this question
建议您使用 html amazon API 来执行此操作。流式传输有点复杂,在大多数情况下您不需要它。
Recommend you to use html amazon API to do this. Streaming is a bit complex and in most cases you do not need it.
您还可以使用简单的表单将文件上传到 S3 存储桶。查看此示例 http://aws.amazon.com/articles/1434
示例表单:
You can also use a simple form to uploda the file to the S3 Bucket. Look at this example http://aws.amazon.com/articles/1434
Example form: