我使用下面的代码直接下载图片,但我需要将其放在word doc中并想下载文档。
response.contentType = "application/octet-stream"
response.setHeader("Content-disposition", "attachment;filename=image.jpg")
response.outputStream << inputstream
response.outputStream.flush()
有谁知道如何将图像添加到word文档并使用grails下载?
感谢任何帮助。 感谢
答案 0 :(得分:1)
至少这适用于excel文件...
答案 1 :(得分:1)