Read full tutorial on how to convert org.apache.myfaces.trinidad.model to java.io.File here :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static File uploadedFileToFileConverter(UploadedFile uf) { | |
InputStream inputStream = null; | |
OutputStream outputStream = null; | |
//Add you expected file encoding here: | |
System.setProperty("file.encoding", "UTF-8"); | |
File newFile = new File(uf.getFilename()); | |
try { | |
inputStream = uf.getInputStream(); | |
outputStream = new FileOutputStream(newFile); | |
int read = 0; | |
byte[] bytes = new byte[1024]; | |
while ((read = inputStream.read(bytes)) != -1) { | |
outputStream.write(bytes, 0, read); | |
} | |
} catch (IOException e) { | |
//Do something with the Exception (logging, etc.) | |
} | |
return newFile; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment