我有多个页面允许下载相同的资源(从我的数据库中检索)。
问题是下载只适用于其中一些,即使使用相同的代码并调用相同的 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>
我注意到下载链接只是重新加载页面而不是调用该方法,并且这只发生在#{dispensa.id}
依赖于 GET 参数的页面中。
例如,dispensa.xhtml
如果没有传递 GET 参数,我有一个名为显示我在数据库中的所有文件的页面。
实际上,dispensa.xhtml?id=5
将只显示 id=5 的文件。
在第一种情况下,单击下载链接可以正常工作。在第二种情况下执行此操作将重新加载页面并丢失 GET 参数,因此它将加载dispensa.xhtml
而不是dispensa.xhtml?id=5
.
我认为使用 GET 参数存在一些问题,但是..昨天它工作了,我没有更改此代码!
另一个 NON 工作页面是ricerca.xhtml
显示由 给出的查询的(多个)结果ricerca.xhtml?key=query
。
最后,为了搞砸,在profile.xhtml?user=username
WORKS 中下载。
这破坏了我关于 GET 参数的整个理论。
为避免出现 null byte[] datiFile
,我以这种方式编辑了我的Dispensa
实体:
@Basic(optional = true, fetch=FetchType.EAGER)
@Lob
@Column(name = "datiFile")
private byte[] datiFile;
我不知道该怎么做,因为它没有说出了什么问题,它只是重新加载页面,绕过我的下载!
编辑 :
我尝试更改我的getDownload()
方法以返回File
我的 HD 上的 a,以了解问题是否是由 db 上的空数据引起的,但它仍然无法正常工作!