我是Java-ee开发的新手,我对此非常困惑。事实上,我想使用jsf导入文件并将此文件保存在目录中,但我总是目标无法访问。这是我的豆子:
@ManagedBean
@RequestScoped
public class Import_2G {
//@EJB
//private GestionCellRef2GLocal gestionCellRef2GLocal;
private UploadedFile uploadedFile;
public void save() throws IOException {
//GestionCellRef2GRemote t = null;
Path folder = Paths.get("C:\\Upload");
String filename = FilenameUtils.getBaseName(uploadedFile.getFileName());
String extension = FilenameUtils.getExtension(uploadedFile.getFileName());
Path file = Files.createTempFile(folder, filename + "-", "." + extension);
//try (InputStream input = uploadedFile.getInputstream()) {
// Files.copy(input, folder, StandardCopyOption.REPLACE_EXISTING);
if (file != null) {
FacesMessage message = new FacesMessage("Succesful", file.getFileName() + " was uploaded.");
FacesContext.getCurrentInstance().addMessage(null, message);
}
}
}
这是xhtml文件:
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:jsf="http://xmlns.jcp.org/jsf"
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"
xmlns:p="http://primefaces.org/ui"
template="/WEB-INF/template/template.xhtml">
<ui:define name="title">2G</ui:define>
<ui:define name="content">
<h:form>
<h1> <font color="orange" size="7" > 2G</font></h1>
</h:form>
<h2 >Choose 2 files </h2>
<h:form>
<p:fileUpload fileUploadListener="#{Import_2G.save()}"
mode="advanced" dragDropSupport="true" update="messages"
sizeLimit="100000000000" allowTypes="/(\.|\/)(xls)$/" />
<p:growl id="messages" showDetail="true" />
</h:form>
</ui:define>
</ui:composition>
这是我得到的错误:
警告[javax.enterprise.resource.webcontainer.jsf.lifecycle](默认任务-55)/admin/2g.xhtml @ 23,61 fileUploadListener =&#34;#{Import_2G.save()}&#34 ;:目标无法访问,标识符&#39; Import_2G&#39;解析为null:javax.el.PropertyNotFoundException:/admin/2g.xhtml @ 23,61 fileUploadListener =&#34;#{Import_2G.save()}&#34;:目标无法访问,标识符&#39; Import_2G&#39 ;解析为null
答案 0 :(得分:1)
首先在managedBean中添加名称
@ManagedBean(name="import_2G")
@RequestScoped
public class Import_2G{
......
......
......
}
然后在jsf / xhtml页面中使用此名称访问它
<p:fileUpload fileUploadListener="#{import_2G.save()}"
mode="advanced" dragDropSupport="true" update="messages"
sizeLimit="100000000000" allowTypes="/(\.|\/)(xls)$/" />
这也是一个有效的场景
在类中使用@ManagedBean
注释的示例如下:
@ManagedBean
@SessionScoped
public class Import_2G{
...
}
但在这种情况下,如果您在jsf页面中访问(变量/方法),请使用import_2G
而不是Import_2G
未指定@ManagedBean,则托管bean名称将为默认值 to class name完全限定类名的一部分。在这种情况下 它将是import_2G。