我使用简单模式,glassfish 3.0和primefaces 3.0
支持Bean
私有的UploadedFile文件; private String destination =" D:\ temp \&#34 ;;
public void upload(FleUploadEvent event){
System.out.println("upload");
FacesMessage msg = new FacesMessage("Success! ", event.getFile().getFileName() + " is uploaded.");
FacesContext.getCurrentInstance().addMessage(null, msg);
try {
copyFile(event.getFile().getFileName(), event.getFile().getInputstream());
}
catch (IOException e)
{
e.printStackTrace();
}
}
System.out.println("uploaf finished");
public void copyFile(String fileName,InputStream in){ 试试{
// write the inputStream to a FileOutputStream
OutputStream out = new FileOutputStream(new File(destination + fileName));
int read = 0;
byte[] bytes = new byte[1024];
while ((read = in.read(bytes)) != -1) {
out.write(bytes, 0, read);
}
in.close();
out.flush();
out.close();
System.out.println("New file created!");
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
这是我的jsf页面
答案 0 :(得分:0)
在你的例子中" D:\ tmp \"后面跟着上传文件的完整文件名,即" C:\ Users \ admin \ Desktop \ ulcerimage.jpg"。 这是不正确的,并导致错误。 您需要的只是处理上传的文件名:提取没有路径信息的实际名称。 您可以使用以下示例:
if (fileName.indexOf("/")>0){
fileName = fileName.substring(fileName.lastIndexOf("/"));
}
OutputStream out = new FileOutputStream(new File(destination + fileName));
copyFile方法中的。