开发者

How to convert String to File in Java and vice versa?

开发者 https://www.devze.com 2023-03-22 08:01 出处:网络
Converting String to File: I am passing a file to an action in controller redirect(action:\"downloadFile\", params:[file:temp_file])

Converting String to File: I am passing a file to an action in controller

redirect(action:"downloadFile", params:[file:temp_file])

But when I do

def file = params.file
file.getName();

It开发者_开发问答 give me error cannot cast object 'java.lang.String' to 'java.io.File'

How to convert String to File?


If your params.file is a file that user're uploading, you have to use following:

def file = request.getFile('file')
//where 'file' is a name of parameter, from <input type='file'/>

please read more about file upload in Grails

If you're trying to send this file to user's browser then:

String filename = '/reports/pdfreport9090.pdf'
response.contentType = "application/pdf"
response.setHeader("Content-disposition", "filename=$filename") 
File f = new File(filename)
response.outputStream << f.newInputStream()
response.outputStream.flush()
0

精彩评论

暂无评论...
验证码 换一张
取 消