java输出word解决方案

作者: 6d898101c4c9 | 来源:发表于2018-12-26 01:55 被阅读18次

    最近在做学校的课程设计,其中有个需求是:
    结果输出为word文档,提供下载功能。
    在网上查了下,发现主要有以下方式
    1.Apache POI
    好像是微软和Apache共同推出的一个库
    以下是官方地址和,maven库地址
    http://poi.apache.org/
    https://mvnrepository.com/artifact/org.apache.poi?sort=newest
    2.java2word
    这是项目的github地址
    https://github.com/leonardoanalista/java2word

    最后选择了java2word,因为示例一下就跑通了,生成了word文档,代码也很简单。

    一,导入java2word源码

    因为这个项目不可用maven,,需要自己下下来去打包,那就直接用源码好了。
    https://github.com/leonardoanalista/java2word

    bnth.png
    将这个word文件夹拷贝到自己的工程/src目录下面。
    这样在自己项目中就可以使用了。

    二,示例代码及结果

    package wordTest;
    
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.PrintWriter;
    import word.api.interfaces.IDocument;
    import word.w2004.Document2004;
    import word.w2004.elements.BreakLine;
    import word.w2004.elements.Heading1;
    import word.w2004.elements.Paragraph;
    
    
    public class MyWord {
        public static void main(String[] args) {
            IDocument myDoc = new Document2004();
            myDoc.addEle(Heading1.with("昕").create());
            myDoc.addEle(BreakLine.times(2).create()); //two break lines
            myDoc.addEle(Paragraph.with("月亮代表我的心").create());
            //then get the XML representation of the MS Word document
            String myWord = myDoc.getContent();
            System.out.println(myWord);
        
            File fileObj = new File("G:\\File\\Java2word_allInOne.doc");
                       //将生成的xml内容写入到文件中。
            PrintWriter writer = null;
            try {
                writer = new PrintWriter(fileObj);
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            }
            writer.println(myWord);
            writer.close();
        }
    }
    

    在相应目录下找到生成的文件:


    aaaaa.png

    三,在应用到web项目之前,先复习下http协议。

    https://blog.csdn.net/holmofy/article/details/68492045

    四,在web项目中的应用思路

    在http协议中文件下载的本质:

    浏览器根据相应头部的信息来确定响应数据是什么,

    1.如果是html页面,则显示给用户

    (Content-Type: text/html;charset=utf-8的意义就在于此,让浏览器明白相应数据中的二进制到底是什么)

    HTTP/1.1 200 OK
    Content-Encoding: gzip
    Content-Type: text/html;charset=utf-8
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8" />
        <title>Document</title>
    </head>
    <body>
        <p>this is http response</p>
    </body>
    </html>
    
    2.如果是文件

    如何告诉浏览器,这是个文件呢,当然是相应头部中的信息呗,
    也就是分两步
    1.将响应的信息写入响应头部(告诉这是个文件)
    需要用到下面几个请求头信息
    Content-Type:application/octet-stream
    说明是二进制流,也可以用 application/msword
    Content-Length: 即文件字节数
    Content_disposition, fileName=my.docx

    2.将文件内容写入响应体

    这里的代码用的是spring boot,不管是用其他的什么框架或语言,道理都是一样的。

        @GetMapping("/test")
        public ResponseEntity<Object> test() {
            IDocument myDoc = new Document2004();
            myDoc.addEle(Heading1.with("").create());
            myDoc.addEle(BreakLine.times(2).create()); //two break lines
            myDoc.addEle(Paragraph.with("月亮代表我的心").create());
            //then get the XML representation of the MS Word document
            String myWord = myDoc.getContent();
            System.out.println(myWord);
    
            byte[] a =myWord.getBytes();
            String filename="my.docx";
            return ResponseEntity.ok()
                    .header(HttpHeaders.CONTENT_DISPOSITION, "fileName=\"" +filename  + "\"")
    //文件名称
                    .header(HttpHeaders.CONTENT_TYPE, "application/msword")
    //数据类型,这里也可用application/octet-stream 表示是二进制流
                    .header(HttpHeaders.CONTENT_LENGTH, a.length + "").header("Connection", "close")
    //数据部分长度,即文件字节数组的长度
                    .body(a);
    //写入文件内容(byte数组),,,,试了下,其实直接写入字符串也可以。。
        }
    

    运行结果:
    在浏览器输入url会自动下载文件。

    相关文章

      网友评论

        本文标题:java输出word解决方案

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