美文网首页
Aspose 写入输出流

Aspose 写入输出流

作者: 暗夜行者 | 来源:发表于2019-07-25 13:58 被阅读0次

    public void methodName(HttpServletResponse response) throws IOException {

        response.setContentType("application/vnd.ms-powerpoint");

        response.setHeader("Content-Disposition", "attachment;filename="+filename+"");

        Presentation pres=new Presentation();

        ***

        pres.save(response.getOutputStream(), SaveFormat.Pptx);    

    }

    参考:

    https://stackoverflow.com/questions/43036390/downloading-ppt-file-using-spring-mvc-and-apache-poi?rq=1

    相关文章

      网友评论

          本文标题:Aspose 写入输出流

          本文链接:https://www.haomeiwen.com/subject/kfhhrctx.html