我使用JSF <h:inputFile>
将图像上传到服务器。
<h:form enctype="multipart/form-data">
<h:inputFile value="#{fileHandlerBean.file}"/>
<h:commandButton action="#{fileHandlerBean.uploadImage()}"/>
</h:form>
我创建了一个虚拟主机/projectname/webapp/images
。我可以成功创建文件到文件夹。
private Part file;
public String uploadImage(){
InputStream is = null;
try {
String extension = FilenameUtils.getExtension(file.getSubmittedFileName());
File tempFile = File.createTempFile("picture-", "."+extension, new File("/projectname/webapp/images"));
Logger.getLogger("FILE SIZE").warning(String.valueOf(file.getSize()));
Logger.getLogger("FILE EXTENSION").warning(extension);
is = file.getInputStream();
Logger.getLogger("STREAM AVAILABLE SIZE").warning(String.valueOf(is.available()));
Files.copy(is, tempFile.toPath());
} catch (IOException ex) {
Logger.getLogger(FileHandlerBean.class.getName()).log(Level.SEVERE, null, ex);
} finally {
if( is!= null){
try {
is.close();
} catch (IOException ex) {
Logger.getLogger(FileHandlerBean.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
return "success";
}
但是它们都是空的,我每次都得到java.nio.file.FileAlreadyExistsException
。
java.nio.file.FileAlreadyExistsException: projectnamewebappimagespicture-3433673623996534194.png
at sun.nio.fs.WindowsException.translateToIOException(WindowsException.java:81)
at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:97)
at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:102)
at sun.nio.fs.WindowsFileSystemProvider.newByteChannel(WindowsFileSystemProvider.java:230)
at java.nio.file.spi.FileSystemProvider.newOutputStream(FileSystemProvider.java:434)
at java.nio.file.Files.newOutputStream(Files.java:216)
at java.nio.file.Files.copy(Files.java:3016)
at com.toolmanagement.backingbeans.FileHandlerBean.uploadImage(FileHandlerBean.java:41)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
我使用Logger检查文件大小,扩展名和流大小,一切正常。
这是如何引起的,我该如何解决?
更新:我将StandardCopyOption.REPLACE_EXISTING
添加到Files.copy()
,现在它可以工作,但它仍然没有解决问题。我使用createTempFile()
来创建唯一的随机文件名。为什么说这个文件已经存在了?
File#createTempFile()
确实立即创建了一个空文件。这是为了保证文件名已经被保留并可供使用,从而消除了(非常小的)另一个线程在同一时刻碰巧并发地生成相同文件名的风险。
您确实应该在Files#copy()
中使用StandardCopyOption.REPLACE_EXISTING
。这个标志在旧的FileOutputStream
方法中是不必要的,因为它已经默认覆盖文件。
我知道你从这个答案中得到了createTempFile()
的例子;与此同时,它已被更新以修复此疏忽。