liferay plugin 开发导出excel怎么设置head信息?

解决方案 »

  1.   

    /*设置文件下载的头信息*/
    LiferayRenderResponse liferayRes = (LiferayRenderResponse)res;liferayRes.setContentType("application/x-download");
    liferayRes.addProperty(HttpHeaders.CACHE_CONTROL, "max-age=3600, must-revalidate");
    liferayRes.addProperty("Content-disposition", "attachment; filename=students.xls");// 设定输出文件头
    OutputStream out = liferayRes.getPortletOutputStream();
    exportStudents(out, req, signers);