// Get the form file property from the form
UploadForm uploadForm = (UploadForm) form;
FormFile content = uploadForm.getContent();
InputStream in = null;
OutputStream out = null;
try {
// Get an input stream on the form file
in = content.getInputStream();
// Create an output stream to a file
out = new BufferedOutputStream (new FileOutputStream("temp.txt"));
byte[] buffer = new byte[512];
while (in.read(buffer) != -1) {
out.write(buffer);
}
}
finally {
if (out != null) out.close();
if (in != null) in.close();
}
return mapping.findForward("success");