Это то, что я имею до сих пор.Я знаю, что файл работает, потому что, когда я форсирую расширение .jpg и загружаю изображение .jpg, он работает нормально.Но имя файла выглядит так с добавленным .jpg.
E: \ Documents and Settings \ mgrif002 \ Рабочий стол \ data \ upload_59fef24e_1302d1a3fb9__7ff5_00000001.tmp.jpg
try
{
String filePath = "E:/Documents and Settings/mgrif002/Desktop/data/";
//System.out.println("Server path:" + filePath);
System.out.println(form.getFile().getAbsolutePath());
File fileToCreate = new File(filePath,form.getFile().getAbsolutePath()+".jpg");
FileUtils.copyFile(form.getFile(), fileToCreate);
Dicom dicom_file = new Dicom(pid,fileToCreate.getAbsolutePath(), form.getName(),true,((short)1));
ccr.saveDicom(dicom_file);
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}