摘要:
XSSFWorkbook wb = new XSSFWorkbook(InputStream is); dstStream = new ByteArrayOutputStream(); wb.write(dstStream); byte[] bytes = dstStream.toByteArray 阅读全文
摘要:
/** * 拼接多个word模板,每个模板分页 * @param documentList * @return * @throws Exception */ public static Document AddDocs2Doc(List<Document> documentList) throws 阅读全文
摘要:
遇到一个需求,要在word文档中插入一些符号,入下图所示: 参考:https://blog.csdn.net/qq_35192741/article/details/98497981 找了些博客,大概思路是,先设置特殊符号的字体,然后再写入对应的内容,如下: 但是去找 Wingding2 的特殊字符 阅读全文