write() method in FileItem
I am using commons-fileupload.1.1.jar in Jakarta Apache. But when I call:
File saveTo = new File(upload_path+"/"+name);
item.write(saveTo);
It fails showing following exception:
java.io.FileNotFoundException: /var/www/icma/upload/painting_small.jpg (No such file or directory)
Any solution please?
Thanks in ADVANCE.