temp.createNewFile();
temp.deleteOnExit();
out = new BufferedOutputStream(new FileOutputStream(temp));
IOUtils.copy(item.getInputStream(), out);
} catch (Exception e) {
throw new ZeusException(e);
} finally{
IOUtils.closeQuietly(out);
}
JobHistory history=new JobHistory();