使用 gwt-upload 在 GAE 上上传文件

发布于 2024-11-16 09:29:50 字数 153 浏览 3 评论 0原文

有人知道如何使用 gwt-upload 实现上传文件吗 http://code.google.com/p Google 应用程序引擎上的 /gwtupload/

Can someone know how to upload files using gwt-upload implementation at http://code.google.com/p/gwtupload/ on Google Application Engine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

脱离于你 2024-11-23 09:29:50

下载页面列出了 gwtupload-gae 工件,即“GwtUpload for GAE 服务器”。

The download page lists the gwtupload-gae artifacts, which are "GwtUpload for GAE servers".

草莓酥 2024-11-23 09:29:50

请参阅 dindeman 的第二篇文章:使用 GAE 进行 GWTUpload

以下链接也可能有助于了解 GWTUpload-GAE 目前与 Google 新 FileService API 相关的情况:https://groups.google.com/forum/#!topic/gwtupload/SYV6AGp7qkY

See the second post by dindeman: GWTUpload using GAE.

The following link may also help shed light on what's currently going on with GWTUpload-GAE in relation to Google's new FileService API: https://groups.google.com/forum/#!topic/gwtupload/SYV6AGp7qkY.

绾颜 2024-11-23 09:29:50

不,它不起作用:当我尝试访问字节时,我发现大小为 0

public class UploadFileHandler extends AppEngineUploadAction {
  @Override
  public String executeAction(HttpServletRequest request, List<FileItem> sessionFiles) throws UploadActionException {

    for (FileItem item : sessionFiles) {
      String name = item.getName();
      byte[] bytes = IOUtils.toByteArray(item.getInputStream());
    }
  }}

No it doesn't work: when I try to access the bytes, I find the size is 0

public class UploadFileHandler extends AppEngineUploadAction {
  @Override
  public String executeAction(HttpServletRequest request, List<FileItem> sessionFiles) throws UploadActionException {

    for (FileItem item : sessionFiles) {
      String name = item.getName();
      byte[] bytes = IOUtils.toByteArray(item.getInputStream());
    }
  }}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文