Pessoal gostaria que ao inves fosse fixo a minha variavel ORIGEM, gostaria de pegar o caminho automaticamente.
Segue abaixo meu codigo
public void upload(FileUploadEvent event) {
FacesMessage msg = new FacesMessage("Success! ", event.getFile().getFileName() + " is uploaded.");
FacesContext.getCurrentInstance().addMessage(null, msg);
try {
UploadedFile arq = event.getFile();
File file = new File(arq.getFileName());
System.out.print(file.getAbsolutePath());
String origem = "c:\\";
InputStream in = new FileInputStream(origem+ event.getFile().getFileName());
OutputStream out = new FileOutputStream(destination + event.getFile().getFileName());
byte[] bytes = new byte[1024];
int size;
while((size = in.read(bytes)) > 0){
out.write(bytes, 0, size);
}
} catch (IOException e) {
e.printStackTrace();
}
}