1

我正在尝试使用多个 af:inputFile 组件创建多个文件上传。这是我的xhtml:

<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
  <jsp:directive.page contentType="text/html;charset=UTF-8"/>
  <f:view>
    <af:document id="d1" title="Home">
      <af:form id="f1" usesUpload="true">
        <af:commandButton text="Add" immediate="true"
                          actionListener="#{viewScope.massUpload.add}"
                          id="cb2"/>
        <af:panelGroupLayout layout="vertical" id="pgl1" partialTriggers="cb1">
          <af:iterator value="#{viewScope.massUpload.fileComponents}" var="fileComponent"
                       id="i1" varStatus="status">
            <af:inputFile binding="#{fileComponent}" id="if1"
                          value="#{viewScope.massUpload.files[status.index]}"/>
          </af:iterator>
          <af:commandButton text="Upload"
                            actionListener="#{viewScope.massUpload.upload}"
                            id="cb1"/>
        </af:panelGroupLayout>
      </af:form>
    </af:document>
  </f:view>
</jsp:root>

这是托管bean:

package com.edfx.massupload.bean;

import java.util.ArrayList;
import java.util.List;

import javax.faces.event.ActionEvent;

import oracle.adf.view.rich.component.rich.input.RichInputFile;

import oracle.stellent.ridc.IdcClientException;

import org.apache.myfaces.trinidad.model.UploadedFile;


public class MassUploadBean {
    private List<RichInputFile> fileComponents = new ArrayList<RichInputFile>();
    private List<UploadedFile> files = new ArrayList<UploadedFile>();

    public MassUploadBean() {
        super();        
    }

    public void add(ActionEvent event) {   
        fileComponents.add(new RichInputFile());
        files.add(null);
    }

    public void upload(ActionEvent event) throws IdcClientException {
        for(UploadedFile file : files) {
            System.out.println(file.getFilename());
        }
    }

    public void setFiles(List<UploadedFile> files) {
        this.files = files;
    }

    public List<UploadedFile> getFiles() {
        return files;
    }

    public void setFileComponents(List<RichInputFile> fileComponents) {
        this.fileComponents = fileComponents;
    }

    public List<RichInputFile> getFileComponents() {
        return fileComponents;
    }
}

我面临的问题是:

  1. 我点击了添加按钮;页面新增文件上传组件;我浏览一个文件;再次点击添加按钮;添加了另一个文件上传组件并提交了第一个文件上传(但它有边框或类似的东西);我从第二个文件上传浏览文件;再次点击添加按钮;现在第一个文件上传被清除(重置),第二个文件上传被提交;
  2. 每当我单击“添加”按钮时,文件就会被上传。为什么?如何抵抗它?我已经尝试通过设置 toSubmit="false" 但没有运气。还尝试将迭代器、文件上传器和上传按钮放入 af:subForm
  3. 我的要求是在单击上传按钮时上传文件,而不是之前。

难道我做错了什么?任何指针都会非常有帮助。

4

2 回答 2

1

我看到您正在使用 IdcClientException,它告诉我您正在上传到 UCM。如果您也在使用 WebCenter,那么您可以使用 WebCenter Portal 附带的开箱即用的上传任务流:http: //docs.oracle.com/cd/E29597_01/webcenter.1111/e25595/jpsdg_content_jsfpg。 htm#autoId18

从 PS5 开始,该任务流程将为您执行多文件上传。

于 2013-03-21T21:43:15.710 回答
1

ADF 的更高版本应该有助于批量上传:http: //jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_inputFile.html

打开 displayMode 和 maximumFiles(另见 uploadType)。

于 2013-08-20T18:21:35.180 回答