使用Apache POI从字符串写入docx文件

时间:2018-07-12 02:52:33

标签: java apache-poi

我具有用于从字符串message制作docx文件的代码

                XWPFDocument document = new XWPFDocument();
                XWPFParagraph tmpParagraph = document.createParagraph();
                XWPFRun tmprun = tmpParagraph.createRun();
                tmprun.setText(message);
                fos = new FileOutputStream(new File("tes.docx"));
                document.write(fos);
            } catch (FileNotFoundException ex) {
                Logger.getLogger(tampilan.class.getName()).log(Level.SEVERE, null, ex);
            } catch (IOException ex) {
                Logger.getLogger(tampilan.class.getName()).log(Level.SEVERE, null, ex);
            } finally {
                try {
                    fos.close();
                } catch (IOException ex) {
                    Logger.getLogger(tampilan.class.getName()).log(Level.SEVERE, null, ex);
                }
            }     

该字符串包含从Word文档中提取的一些文本。但这将全文放在一个段落下。 这是我要写的字符串

  

Bahan /:Antrum

     

Keterangan:GERD

     

诊断Klinik:NERD +胃窦胃浅部Gr。 1

     

Pemeriksaan PA:Blok Parafin

     

Makroskopik:Diterima satu biji jaringan kecil ukuran kurang lebih 0,01 cc penampang putih,padat,lunak。

感谢帮助。

0 个答案:

没有答案