6

I am getting the uploaded file using request.getFile("file") where "file" is the name of file input element in my gsp file. I am able to parse this file fine but when I try to get the file's original name, I encounter the following error

No signature of method: org.springframework.web.multipart.commons.CommonsMultipartFile.getOriginalFileName() is applicable for argument types: () values: [] Possible solutions: getOriginalFilename()

This is my code:

def f = request.getFile("file")
def name = f.getOriginalFileName()

Why can't I call the getOriginalFileName() method on 'f', I thought request.getFile() returned a MultipartFile object

Ameya
  • 549
  • 1
  • 10
  • 19

2 Answers2

7

The exception shows that it's a capitalization issue on method call f.getOriginalFileName() -> f.getOriginalFilename().

schmolly159
  • 3,881
  • 17
  • 26
1

This is my code, which worked for me:

def uploadedFileName = request.getFile("file")    
def fileName = uploadedFileName.originalFilename
Bojan B
  • 2,091
  • 4
  • 18
  • 26