java - 通过 GWT-RPC 上传文件?

标签 java javascript gwt rpc gwt-rpc

使用 GWT 上传文件通常是通过 FormPanel 中的 FileUpload 完成的,如下所示:

// Create a FormPanel and point it at a service.
    final FormPanel form = new FormPanel();
    form.setAction("/myFormHandler");

    // Because we're going to add a FileUpload widget, we'll need to set the
    // form to use the POST method, and multipart MIME encoding.
    form.setEncoding(FormPanel.ENCODING_MULTIPART);
    form.setMethod(FormPanel.METHOD_POST);

    // Create a panel to hold all of the form widgets.
    VerticalPanel panel = new VerticalPanel();
    form.setWidget(panel);

    // Create a TextBox, giving it a name so that it will be submitted.
    final TextBox tb = new TextBox();
    tb.setName("textBoxFormElement");
    panel.add(tb);

    // Create a ListBox, giving it a name and some values to be associated with
    // its options.
    ListBox lb = new ListBox();
    lb.setName("listBoxFormElement");
    lb.addItem("foo", "fooValue");
    lb.addItem("bar", "barValue");
    lb.addItem("baz", "bazValue");
    panel.add(lb);

    // Create a FileUpload widget.
    FileUpload upload = new FileUpload();
    upload.setName("uploadFormElement");
    panel.add(upload);

    // Add a 'submit' button.
    panel.add(new Button("Submit", new ClickHandler() {
      public void onClick(ClickEvent event) {
        form.submit();
      }
    }));

还有其他方法可以使用 GWT 处理文件上传吗?是否可以使用 GWT-RPC 或 REST?

编辑:浏览器要求只有 Webkit

最佳答案

使用现代浏览器,您可以获得 input type=file 的原始字节(在 base64 数据 url 中)。有了这些字节,您就可以随心所欲地发送它们。

下面是一些代码,显示文件输入对话框并获取原始字节 (dataURL):

class Util {
  static native void info (Object obj) /*-{
    if ($wnd.console && $wnd.console.log) $wnd.console.log (obj)
  }-*/;

  /** Fires a "click" event on an HTML element. */
  public static native void click (final JavaScriptObject element) /*-{
    if (element.click) element.click();
  }-*/;

  /** Read a file from the local filesystem. The file should have been choosen via an `input type=file`.
   * See also: http://www.html5rocks.com/ru/tutorials/file/dndfiles/; http://www.w3.org/TR/FileAPI/ */
  public static native void readFile (JavaScriptObject inputFile, V1<String> andThen) /*-{
    var files = inputFile.files
    if ($wnd.console) $wnd.console.log ('readFile; input: ', inputFile, files)
    if (!files || !files.length) return
    var reader = new FileReader()
    reader.onload = function (progressEvent) {
      //$wnd.console.log ('read event: ', progressEvent, 'read: ', reader.result)
      andThen.@client.Closure.V1::call(Ljava/lang/Object;)(reader.result)
    }
    reader.readAsDataURL (files[0])
  }-*/;
}

// Remove old form.
final Element oldForm = Document.get().getElementById ("uploadForm");
if (oldForm != null) oldForm.getParentNode().removeChild (oldForm);

// A hidden form used to upload the files.
final FormPanel form = new FormPanel();
form.getElement().setId ("uploadForm");
final Style formStyle = form.getElement().getStyle();
formStyle.setDisplay (Display.INLINE_BLOCK); formStyle.setOverflow (Overflow.HIDDEN); formStyle.setWidth (0, Unit.PX); formStyle.setHeight (0, Unit.PX);
form.setAction ("http://.../");
form.setEncoding (FormPanel.ENCODING_MULTIPART); form.setMethod (FormPanel.METHOD_POST);
final FileUpload upload = new FileUpload(); upload.setName ("image");
form.add (upload);
RootPanel.get().add (form);

upload.addChangeHandler (new ChangeHandler() {public void onChange (final ChangeEvent event) {
  Util.info ("Loading: " + upload.getFilename());
  Util.readFile (upload.getElement(), new V1<String>() {public void call (final String dataURL) {
    Util.info ("Loaded: " + upload.getFilename() + " (url is " + dataURL.length() + " bytes)");
  }});
}});

// Trigger the upload dialogue. See also: http://aspalliance.com/articleViewer.aspx?aId=1441&pId=-1
Util.click (upload.getElement());

关于java - 通过 GWT-RPC 上传文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20300772/

相关文章:

java - PHP 和 Java 编码问题

javascript - React-redux 检查触发了哪个操作

javascript - HTML 表单和 javascript---在同一个表格中显示不同的表单

java - 暂停 AnimationDrawable 并从同一帧恢复

java - Guice - 当您只知道接口(interface)时如何获取实例

javascript - 如何让 Bootstrap 导航栏滑动过渡工作?

java - 使用 Google Web Toolkit 播放声音通知

java - GWT 客户端全局配置值

gwt - Maven GWT 插件添加其他源目录

java - 在java中,在磁盘上存储对象的最佳方式是什么?