从spring MVC控制器

时间:2015-07-22 13:43:28

标签: java xml spring file spring-mvc

我已经尝试了很多从控制器函数返回文件。

这是我的功能:

@RequestMapping(value = "/files", method = RequestMethod.GET)
@ResponseBody public FileSystemResource getFile() {
     return new FileSystemResource(new File("try.txt")); 
}

我收到此错误消息:

  

无法写入JSON:
  没有为类java.io.FileDescriptor找到序列化程序,也没有发现创建BeanSerializer的属性   (为避免异常,请禁用SerializationFeature.FAIL_ON_EMPTY_BEANS))
  (通过参考链:
  org.springframework.core.io.FileSystemResource [\ “的OutputStream \”] - > java.io.FileOutputStream中[\ “FD \”]);
  嵌套异常是com.fasterxml.jackson.databind.JsonMappingException:没有为类java.io.FileDescriptor找到序列化器,也没有发现创建BeanSerializer的属性
  (为避免异常,请禁用SerializationFeature.FAIL_ON_EMPTY_BEANS))
  (通过参考链:org.springframework.core.io.FileSystemResource [\“outputStream \”] - > java.io.FileOutputStream [\“fd \”])

有没有人知道如何解决它?

而且,我应该如何从客户端发送(JavaScript,jQuery)?

1 个答案:

答案 0 :(得分:5)

编辑2:首先 - 请参阅底部的编辑1 - 这不是正确的方法。但是,如果您无法使序列化程序工作,您可以使用此解决方案,将XML文件读入字符串,并促使用户保存它:

@RequestMapping(value = "/files", method = RequestMethod.GET)
public void saveTxtFile(HttpServletResponse response) throws IOException {

    String yourXmlFileInAString;
    response.setContentType("application/xml");
    response.setHeader("Content-Disposition", "attachment;filename=thisIsTheFileName.xml");

    BufferedReader br = new BufferedReader(new FileReader(new File(YourFile.xml)));
    String line;
    StringBuilder sb = new StringBuilder();

    while((line=br.readLine())!= null){
        sb.append(line);
    }

    yourXmlFileInAString  = sb.toString();

    ServletOutputStream outStream = response.getOutputStream();
    outStream.println(yourXmlFileInAString);
    outStream.flush();
    outStream.close();
}

那应该做的工作。但请记住,浏览器会缓存URL内容 - 因此最好为每个文件使用唯一的URL。

编辑:

经过进一步检查后,您还应该能够将以下代码添加到您的操作中,以使其正常工作:

response.setContentType("text/plain");

(或者对于XML)

response.setContentType("application/xml");

所以你的完整解决方案应该是:

@RequestMapping(value = "/files", method = RequestMethod.GET)
@ResponseBody public FileSystemResource getFile(HttpServletResponse response) {
    response.setContentType("application/xml");
    return new FileSystemResource(new File("try.xml")); //Or path to your file 
}