我有多个页面允许下载相同的资源(从我的数据库中检索)。
问题在于,即使使用SAME代码并调用SAME bean,下载也只适用于其中一些。
这件事情变得非常烦人,因为在非工作页面上,点击下载链接只会重新加载页面而没有任何消息/异常,所以我无法找出发生了什么。
这是我的BEAN代码:
package ManagedBeans;
import ejb.DispensaManagerLocal;
import entity.Dispensa;
import entity.Utente;
import java.io.ByteArrayInputStream;
import javax.ejb.EJB;
import javax.faces.application.FacesMessage;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ManagedProperty;
import javax.faces.bean.RequestScoped;
import javax.faces.context.FacesContext;
import org.primefaces.event.RateEvent;
import org.primefaces.model.DefaultStreamedContent;
import org.primefaces.model.StreamedContent;
/**
*
* @author stefano
*/
@ManagedBean
@RequestScoped
public class DispensaBean {
@EJB
private DispensaManagerLocal dispensaManager;
@ManagedProperty(value = "#{loginBean.utente}")
private Utente utente;
public Utente getUtente() {
return utente;
}
public void setUtente(Utente utente) {
this.utente = utente;
}
/**
* Creates a new instance of DispensaBean
*/
public DispensaBean() {
}
public StreamedContent getDownload() {
String id = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap().get("dispensaId");
System.out.println("________" + id);
Dispensa d = dispensaManager.findById(Integer.parseInt(id));
String type = getMimeFromByte(d.getDatiFile());
String estensione = "";
if(type.equals("application/pdf")){
estensione = ".pdf";
} else if(type.equals("application/zip")) {
estensione = ".zip";
} else if(type.equals("application/vnd.ms-powerpoint")) {
estensione = ".ppt";
}
return new DefaultStreamedContent(new ByteArrayInputStream(d.getDatiFile()), type, d.getTitolo() + estensione);
}
private String getMimeFromByte(byte[] src) {
if (src[0] == 0x25 && src[1] == 0x50 && src[2] == 0x44 && src[3] == 0x46) {
return "application/pdf";
}
if (src[0] == 0x50 && src[1] == 0x4b) {
return "application/zip";
}
if (src[0] == 0xd0 && src[1] == 0xcf && src[2] == 0x11 && src[3] == 0xe0 && src[4] == 0xa1 && src[5] == 0xb1 && src[6] == 0x1a && src[7] == 0xe1) {
return "application/vnd.ms-powerpoint";
}
return "application/octet-stream";
}
}
现在,在非工作页面上,未调用getDownload()
方法,因为它不会打印任何内容。
这是下载按钮代码
<h:form style="float: right">
<pou:commandLink id="downloadDispensa" ajax="false" disabled="#{!loginBean.logged}">
<pou:graphicImage value="./resources/images/download.png" height="30"/>
<pou:fileDownload value="#{dispensaBean.getDownload()}"/>
<f:param name="dispensaId" value="#{dispensa.id}"/>
</pou:commandLink>
</h:form>
我注意到的是下载链接只是RELOADS页面而不是调用方法,这只发生在#{dispensa.id}
取决于GET参数的页面中。
例如,我有一个名为dispensa.xhtml
的页面,如果没有传递GET参数,它会在数据库中显示我的所有文件。
的确,dispensa.xhtml?id=5
只会显示id = 5的文件。
在第一种情况下,单击下载链接可以正常工作。
在第二种情况下执行此操作将重新加载页面并将丢失GET参数,因此它将加载dispensa.xhtml
而不是dispensa.xhtml?id=5
。
我认为在使用GET参数时存在一些问题,但是..昨天工作了,我没有更改此代码!
其他非工作页面为ricerca.xhtml
,显示ricerca.xhtml?key=query
给出的查询的(多个)结果。
最后,为了解决问题,请在profile.xhtml?user=username
工作中进行下载。
这破坏了我关于GET参数的整个理论。
为避免出现空byte[] datiFile
,我以这种方式编辑了我的Dispensa
实体:
@Basic(optional = true, fetch=FetchType.EAGER)
@Lob
@Column(name = "datiFile")
private byte[] datiFile;
我不知道该怎么办,因为它没有说明出了什么问题,只是重新加载页面,绕过我的下载!
编辑:
我已经尝试更改我的getDownload()
方法以返回我的HD上的File
,以了解问题是否是由数据库上的空数据引起但它仍然不起作用就像我说的那样!
答案 0 :(得分:3)
似乎我通过使用替代解决方案解决了这个问题。
我已经改变了所有
<h:form style="float: right">
<pou:commandLink id="downloadDispensa" ajax="false" disabled="#{!loginBean.logged}">
<pou:graphicImage value="./resources/images/download.png" height="30"/>
<pou:fileDownload value="#{dispensaBean.getDownload()}"/>
<f:param name="dispensaId" value="#{dispensa.id}"/>
</pou:commandLink>
</h:form>
到
<h:form style="float: right">
<h:outputLink id="downloadDispensa" disabled="#{!loginBean.logged}" target="_blank" value="./download.xhtml?id=#{dispensa.id}">
<pou:graphicImage value="./resources/images/download.png" height="30"/>
</h:outputLink>
</h:form>
其中download.xhtml
包含此代码:
<script type="text/javascript">
if(document.referrer == "" || document.referrer == "download.xhtml"){
self.location='./index.xhtml';
}
document.onblur = new Function('self.close()');
</script>
<h:body onload="document.getElementsByClassName('downloadDispensa')[0].click();" rendered="#{loginBean.logged}">
<h:form>
<h:commandLink class="downloadDispensa" id="downloadDispensa" style="display: none">
<pou:graphicImage value="./resources/images/download.png" height="30"/>
<pou:fileDownload value="#{dispensaBean.download}"/>
<f:param name="dispensaId" value="#{request.getParameter('id')}"/>
</h:commandLink>
</h:form>
</h:body>
<h:body onload="self.location='./index.xhtml';" rendered="#{!loginBean.logged}">
</h:body>
因此,它会加载下载页面,在下载链接上自动切换,并在显示下载对话框时自动关闭页面。
答案 1 :(得分:0)
我也遇到过同样的问题。我已经调试了它,并且知道在表单中有表单,因为我将模板包含在另一个模板中,因为它是一个摘要屏幕。所以我删除了内部模板中的所有h:form标记,除了具有所有这些模板就可以了。