6

我正在开发一个 grails 应用程序,它具有文件共享功能。它将文件上传到服务器并允许用户从服务器下载文件。我为此使用了以下代码:

def file = new java.io.File(filePath)
response.setContentType( "application-xdownload")
response.setHeader("Content-Disposition", "attachment;filename=${fileName}")
response.getOutputStream() << new ByteArrayInputStream(file.getBytes())

此代码适用于小文件,但是当文件大小增加时,即 >100MB,它给了我以下错误:

java.lang.OutOfMemoryError: Java heap space

那么,我该怎么做才能让我的应用程序能够下载大文件?谢谢

4

1 回答 1

9

不要将文件加载到内存中,而是替换

response.getOutputStream() << new ByteArrayInputStream(file.getBytes())

和:

file.withInputStream { response.outputStream << it }
于 2013-03-13T08:09:59.473 回答