我正在使用spring编写REST webserivce。我必须在响应中返回一个文件。
它是一个GET调用,当用户输入URL时,应该在浏览器中显示用户的下载部分。
我不确定控制器中的返回类型应该是什么。我是否必须指定代码的任何内容类型?
答案 0 :(得分:4)
我的项目中有类似的要求。我使用下面的代码
@Controller
@RequestMapping("/reports")
public class ReportsController {
protected static String PRODUCTIVITY_REPORT_FILE = "productivityReportFile";
@Resource(name="propertyMap")
protected Map<String, String> propertyMap;
@RequestMapping(value="/cratl/productivity_report", method=RequestMethod.GET, produces="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
public @ResponseBody byte[] getProductivityReport()
throws Exception {
byte[] reportBytes = null;
try {
File reportFile = new File(propertyMap.get(PRODUCTIVITY_REPORT_FILE));
if (reportFile != null && reportFile.exists()) {
InputStream reportInputStream = new FileInputStream(reportFile);
long length = reportFile.length();
reportBytes = new byte[(int)length];
int offset = 0;
int numRead = 0;
while (offset < reportBytes.length
&& (numRead = reportInputStream.read(reportBytes, offset, reportBytes.length-offset)) >= 0) {
offset += numRead;
}
if (offset < reportBytes.length) {
throw new Exception("Could not completely read file "+ reportFile.getName());
}
reportInputStream.close();
}
} catch (Exception e) {
e.printStackTrace();
}
return reportBytes;
}
我希望它可以帮到你
答案 1 :(得分:0)
您的控制器方法可以具有您想要的任何名称,它返回一个字符串,该字符串具有在为您要加载的视图定义的views.xml中定义的URL名称,在本例中为下载部分。 所以你的控制器看起来像这样:
@Controller
public class MyController {
@RequestMapping(value = "/downloads", method = RequestMethod.GET)
public String getDownloadSection() {
System.out.println("getting downloads");
return "downloads/index";
}
}
您的views.xml应包含标记:
<definition extends="default" name="downloads/index">
<put-attribute name="body" value="/WEB-INF/views/downloads/index.jspx"/>
</definition>
extends =“default”是一个应该在layouts.xml中的图块定义
我认为这就是它。如果您对// yoursite / downloads执行GET请求,则应打印该消息。
那应该回答你的问题我希望:)
答案 2 :(得分:0)
我使用下面的代码
FileInputStream inputStream = new FileInputStream("FileInputStreamDemo.java"); //read the file
response.setHeader("Content-Disposition","attachment; filename=test.txt");
try {
int c;
while ((c = inputStream.read()) != -1) {
response.getWriter().write(c);
}
} finally {
if (inputStream != null)
inputStream.close();
response.getWriter().close();
}
这是在另一个帖子中找到的
how to write a file object on server response and without saving file on server?