且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

获取上传的文件grails的原始文件名

更新时间:2022-10-15 11:55:00

异常显示它是方法调用的大写问题 f.getOriginalFileName ) - > f.getOriginalFilename()


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

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