我具有用于从字符串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。
感谢帮助。