AngularJS + Jersey REST 文件下载

今天为一个客户的系统增加一个下载文件功能,前端是AngularJS发起请求,后端用Jersey REST API返回文件,实现如下:


后端:

@POST
@Consumes(MediaType.APPLICATION_JSON)
@Path("/report/jc")
@Produces(MediaType.APPLICATION_OCTET_STREAM)
public Response downloadReport() {
    	
    File dir = new File("custom/hangzhou_jw");
    if(!dir.exists()){
    	dir.mkdirs();
    }
    File export = new File(dir.getAbsolutePath() + "/export.doc"); //默认在项目根目录下
    if(!export.exists()){
    	try{
    		export.createNewFile();
    	}catch(IOException e){
    		System.out.println("创建文件失败");
    	}
    }
    	
    String mt = new MimetypesFileTypeMap().getContentType(export);
        
    return Response
          .ok(export,mt)
          .header("Content-disposition","attachment;filename=export.doc")
          .build();
}


前端:

$http.post(fs.common.baseResourceURL + '/custom/hangzhou_jw/report/jc',postData,{responseType: "blob"})
	.success(function (data) {  
        var blob = new Blob([data],{type: "application/octet-stream"});  
        var fileName = "export.doc";  
        var a = document.createElement("a");  
        document.body.appendChild(a);  
        a.download = fileName;  
        a.href = URL.createObjectURL(blob);  
        a.click();  
})  


效果



以上是我自己的实现。

感谢这位网友的分享:http://blog.csdn.net/cjd6568358/article/details/49364255

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...