这篇文章给大家介绍使用java怎么替换docx文件中的字符串,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
创新互联专注为客户提供全方位的互联网综合服务,包含不限于成都网站设计、做网站、清原网络推广、成都小程序开发、清原网络营销、清原企业策划、清原品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们大的嘉奖;创新互联为所有大学生创业者提供清原建站搭建服务,24小时服务热线:13518219792,官方网址:www.cdcxhl.com替换docx文件里面的 ${} 字符串
public class Main { public static void main(String[] args) throws Exception { String template = "C:\\Users\\lzh\\Desktop\\模板.docx"; String outSrc = "C:\\Users\\lzh\\Desktop\\简历.docx"; var is = new FileInputStream(template); var os = new FileOutputStream(outSrc); editDocx(os, is, xml -> { Mapmap = new HashMap<>(); map.put("${name}", "李**"); map.put("${sex}", "男"); map.put("${age}", "21"); Pattern p = Pattern.compile("(\\$\\{)([\\w]+)(\\})"); Matcher m = p.matcher(xml); StringBuffer sb = new StringBuffer(); while (m.find()) { String group = m.group(); m.appendReplacement(sb, map.get(group)); } m.appendTail(sb); xml = sb.toString(); return xml; }); } public static void editDocx(OutputStream bos,InputStream is, Process process){ ZipInputStream zin = new ZipInputStream(is); ZipOutputStream zos = new ZipOutputStream(bos); try { ZipEntry entry; while((entry = zin.getNextEntry()) != null) { //把输入流的文件传到输出流中 如果是word/document.xml由我们输入 zos.putNextEntry(new ZipEntry(entry.getName())); if("word/document.xml".equals(entry.getName())){ String xml = new BufferedReader(new InputStreamReader(zin)).lines().collect(Collectors.joining(System.lineSeparator())); xml = process.process(xml); ByteArrayInputStream byteIn = new ByteArrayInputStream(xml.getBytes()); int c; while ((c = byteIn.read()) != -1) { zos.write(c); } byteIn.close(); }else { int c; while ((c = zin.read()) != -1) { zos.write(c); } } } } catch (IOException e) { e.printStackTrace(); } finally { try { zos.close(); zin.closeEntry(); zin.close(); } catch (IOException e) { e.printStackTrace(); } } } } interface Process { String process(String xml); }
关于使用java怎么替换docx文件中的字符串就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。