gpt4 book ai didi

java - 使用 HTML5 多文件输入将多张图像上传到 GAE Blobstore

转载 作者:行者123 更新时间:2023-12-04 06:16:54 25 4
gpt4 key购买 nike

我正在尝试使用 HTML5 多文件输入将多个图像文件存储到 GAE Blobstore。

由于我的web应用程序会被摄影师用来批量上传照片,所以是绝对关键在客户端的浏览器上启用多个文件选择(一次上传 200 多张照片会很痛苦)

客户端 HTML 将如下所示:

   <form action = "/upload" method="post" enctype="multipart/form-data">
<input type="file" name="myFiles[]" multiple="true"/>
<input type="submit"/>
</form>

在服务器端,将使用 Java HttpServlet 来存储照片组:
public class PhotoUploadServlet extends HttpServlet {

@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
//Upload each photo of myFiles[] in sequence to the GAE Blobstore
}

我计划使用解释的程序单独存储每张照片 here .

问题:我不知道如何从 HttpServletRequest 的 myFiles[] 参数中单独提取每个图像。

有人可以解释我如何将 myFiles[] 参数解释为易于按顺序使用的参数,例如 List<SomeImageType> .然后我可以轻松地将每张照片保存在 List<SomeImageType> 中单独到 Blobstore!

提前致谢!

P.S.:我已经看过 this post ,但由于我不知道 Python,我对 Nick Johnson 的博客文章中提出的解决方案有点迷茫。

最佳答案

在 servlet 中,您可以通过以下方式获取 blob:

Map<String, BlobKey> blobs = blobstoreService.getUploadedBlobs(req);

但是你需要一个小技巧来更改文件的名称,否则 blob 字段将只包含一个键:
<script type="text/javascript">
function uploadFile() {
if (window.File && window.FileList) {
var fd = new FormData();
var files = document.getElementById('fileToUpload').files;
for (var i = 0; i < files.length; i++) {
fd.append("file"+i, files[i]);
}
var xhr = new XMLHttpRequest();
xhr.open("POST", document.getElementById('uploadForm').action);
xhr.send(fd);
} else {
document.getElementById('uploadForm').submit(); //no html5
}
}
</script>

<form id="uploadForm" enctype="multipart/form-data" method="post"
action=<%=blobstoreService.createUploadUrl("/upload") %>">
<input type="file" name="fileToUpload" id="fileToUpload" multiple />
<input type="button" onclick="uploadFile();" value="Upload" />
</form>

这是 GAE 问题: http://code.google.com/p/googleappengine/issues/detail?id=3351

关于java - 使用 HTML5 多文件输入将多张图像上传到 GAE Blobstore,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7124269/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com