0

標準の SelectOneRadio を拡張する Primefaces の SelectOneRadio があります。私の問題は、これをダウンロードするオプションを選択するか、保存しないか、失われることです。コードを同封します。なぜこれが起こるのですか?ありがとう

これはダウンロード用の私の Bean です。

@ManagedBean
@RequestScoped
public class DownloadFile {

private StreamedContent file;
@ManagedProperty(value = "#{selecter.selectedRadio}")
private Files selectedRadio;

//all getters/setters methods
....
....


public DownloadFile() throws IOException {          
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
    HttpServletResponse response = (HttpServletResponse) externalContext.getResponse();
    response.reset(); // Some JSF component library or some Filter might have set some headers in the buffer beforehand. We want to get rid of them, else it may collide.
    response.setContentType("application/xml"); // Check http://www.w3schools.com/media/media_mimeref.asp for all types. Use if necessary ServletContext#getMimeType() for auto-detection based on filename.
    response.setHeader("Content-disposition", "attachment; filename=\"immagine.jpg\""); 

    BufferedInputStream input = null;
    BufferedOutputStream output = null;

    try {
        //Qui va sostituita la risorsa con pathname+/selectedRadio (pathname la otterremo da una query)
        System.out.println("Prova::" + selectedRadio);
        //String s= selectedRadio.getPathname()+"/"+selectedRadio.getNome();
        input = new BufferedInputStream(externalContext.getResourceAsStream("/downloaded_optimus.jpg"));
        output = new BufferedOutputStream(response.getOutputStream());

        byte[] buffer = new byte[10240];
        for (int length; (length = input.read(buffer)) > 0;) {
            output.write(buffer, 0, length);
        }
    } catch(Exception e) {
        output.close();
        input.close();
    }

    facesContext.responseComplete(); // Important! Else JSF will attempt to render the response which obviously will fail since it's already written with a file and closed.
    }
}

これはセレクターの私のBeanです:

@ManagedBean
@SessionScoped
public class Selecter {
@ManagedProperty(value = "#{sessionHandler.db}")
private Session db;
private List<Files> res= new ArrayList<Files>();
private Files selectedRadio;
//all getters/setters methods ....

 @PostConstruct
 public void init(){
     db.beginTransaction();
     ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
     Map<String, Object> sessionMap = externalContext.getSessionMap();
     Query query = db.createQuery( "from Utenti where username= :name" );
     query.setParameter("name", (String)(sessionMap.get("username")));
     List<Utenti>user= query.list();

     for(Utenti a : user){
        Iterator<Files> it = a.getFileses().iterator();
        while (it.hasNext()){
            res.add( it.next());
        }
     }
     db.getTransaction().commit();
 }

}

これは私のファイルです.xhtml

h2>Seleziona dall'elenco il file che vuoi scaricare</h2>
<h:form enctype="multipart/form-data">

<p:outputPanel id="customPanel">  
    <p:selectOneRadio id = "radioID" value="#{selecter.selectedRadio}" layout="pageDirection" >
       <f:selectItems value="#{selecter.res}" var="item" itemLabel="#{item.nome}"  itemValue="#{item}" />
    </p:selectOneRadio>

    <p:dialog modal="true" widgetVar="statusDialog" header="Status" draggable="false" closable="false" resizable="false">  
        <p:graphicImage value="/design/ajax_loading_bar.gif" />  
    </p:dialog>  
    <br></br>       
    <br></br>

    <p:commandButton id="downloadLink" value="Download" ajax="false" immediate="true"
    icon="ui-icon-arrowthichk-s">  
        <p:fileDownload value="#{downloadFile.file}" />  
    </p:commandButton>  


</p:outputPanel>
4

1 に答える 1

0

コマンド コンポーネントの属性は、この属性が設定されているimmediate="true"入力コンポーネントのみを処理します。ラジオボタン入力コンポーネントにはそれがないため、フォーム送信の処理中に無視されます。

#{downloadFile}さらに、マネージド Bean がモデル値の更新フェーズの前 (つまり、JSF によって設定される前)作成およびインスタンス化されている場合、この構成は失敗します。#{selecter.selectedRadio}

交換

@ManagedProperty(value = "#{selecter.selectedRadio}")
private Files selectedRadio;

@ManagedProperty(value = "#{selecter}")
private Selecter selecter;

selectedRadio代わりに、アクション メソッドで にアクセスします。

于 2013-04-04T12:39:29.233 に答える