鍍金池/ 問答/Java/ java如何替換word中${}中的內容?

java如何替換word中${}中的內容?

圖片描述圖片描述
在服務器上有一份模板合同,我需要點擊不同的合同的時候,用該合同的內容填充到模板合同并下載
在模板合同中需要填充的內容都用${}代替了
請問如何實現(xiàn)呀?

圖片描述
這些都要導入嗎?還是只需要導入poi-3.17就可以了?
這幾個需要導入哪個呀

回答
編輯回答
神經質

@fongjava 回答的已經很好了,
我再補充一個更強大的方案

commons-el 不僅能實現(xiàn)一些簡單的變量替換,還能對表達式進行運算。
參見
http://commons.apache.org/dor...
例子
https://www.programcreek.com/...

如果還覺得不夠可以試試FreeMarker

2017年5月15日 13:00
編輯回答
清夢

Apache POI可以處理Word文檔,文本替換用正則

2017年5月3日 08:34
編輯回答
心上人

可以用freemarker實現(xiàn),之前的一個項目,要生成word報告,最開始想用word模板編輯器,后來覺得復雜了,且效果不好。最后改成freemarker,效果不錯,可以在模板中調成自己想要的內容格式,然后導出xml。
字符串替換用 ${string}
表格循環(huán)用標簽

<#list  userList as user>
姓名:${user.userName},性別:${user.sex}
</#list>
2017年1月29日 17:43
編輯回答
心悲涼

可以看看XDOC,支持表格、圖表等,http://www.xdocin.com/office....

2017年11月29日 10:33
編輯回答
離夢

同樓上 具體正則自行百度

2018年4月20日 22:25
編輯回答
胭脂淚

處理Word可以使用poi,
如何替換使用下面三個類就好了。

public class GenericTokenParser {

    private final String       openToken;
    private final String       closeToken;
    private final TokenHandler handler;

    public GenericTokenParser(String openToken, String closeToken, TokenHandler handler) {
        this.openToken = openToken;
        this.closeToken = closeToken;
        this.handler = handler;
    }

    // 主要的邏輯就是取出expression,委托TokenHandler來替換expression。
    public String parse(String text) {
        if (text == null || text.isEmpty()) {
            return "";
        }
        // search open token
        int start = text.indexOf(openToken, 0);
        if (start == -1) {
            return text;
        }
        char[] src = text.toCharArray();
        int offset = 0;
        final StringBuilder builder = new StringBuilder();
        StringBuilder expression = null;
        while (start > -1) {
            if (start > 0 && src[start - 1] == '\\') {
                // this open token is escaped. remove the backslash and continue.
                builder.append(src, offset, start - offset - 1).append(openToken);
                offset = start + openToken.length();
            } else {
                // found open token. let's search close token.
                if (expression == null) {
                    expression = new StringBuilder();
                } else {
                    expression.setLength(0);
                }
                builder.append(src, offset, start - offset);
                offset = start + openToken.length();
                int end = text.indexOf(closeToken, offset);
                while (end > -1) {
                    if (end > offset && src[end - 1] == '\\') {
                        // this close token is escaped. remove the backslash and continue.
                        expression.append(src, offset, end - offset - 1).append(closeToken);
                        offset = end + closeToken.length();
                        end = text.indexOf(closeToken, offset);
                    } else {
                        expression.append(src, offset, end - offset);
                        offset = end + closeToken.length();
                        break;
                    }
                }
                if (end == -1) {
                    // close token was not found.
                    builder.append(src, start, src.length - start);
                    offset = src.length;
                } else {
                    builder.append(handler.handleToken(expression.toString()));
                    offset = end + closeToken.length();
                }
            }
            start = text.indexOf(openToken, offset);
        }
        if (offset < src.length) {
            builder.append(src, offset, src.length - offset);
        }
        return builder.toString();
    }
}
public class VariableTokenHandler implements TokenHandler {
        private final Properties variables;
        private final boolean    enableDefaultValue;
        private final String     defaultValueSeparator;

        public VariableTokenHandler(Properties variables) {
            this.variables = variables;
            this.enableDefaultValue = false;
            this.defaultValueSeparator = ":";
        }

        private String getPropertyValue(String key, String defaultValue) {
            return (variables == null) ? defaultValue : variables.getProperty(key, defaultValue);
        }

        @Override
        public String handleToken(String content) {
            if (variables != null) {
                String key = content;
                if (enableDefaultValue) {
                    final int separatorIndex = content.indexOf(defaultValueSeparator);
                    String defaultValue = null;
                    if (separatorIndex >= 0) {
                        key = content.substring(0, separatorIndex);
                        defaultValue = content.substring(separatorIndex + defaultValueSeparator.length());
                    }
                    if (defaultValue != null) { 
                        return variables.getProperty(key, defaultValue);
                    }
                }
                if (variables.containsKey(key)) {
                    return variables.getProperty(key);
                }
            }
            return "${" + content + "}"; 
        }
    }
public interface TokenHandler {
    String handleToken(String content);
}

使用方法:

public class Main {
    public static void main(String[] args) {
        Properties properties = new Properties();
        properties.put("name", "javaer");
        VariableTokenHandler tokenHandler = new VariableTokenHandler(properties);
        GenericTokenParser parser = new GenericTokenParser("${", "}", tokenHandler);
        String parse = parser.parse("my name is ${name}");
        System.out.println(parse);
    }
}

運行結果:
Screen Shot 2017-12-26 at 11.43.29
clipboard.png

2017年9月5日 19:10
編輯回答
醉淸風

正則表達式啊

2017年6月28日 10:17
編輯回答
吃藕丑
XWPFTemplate template = XWPFTemplate.compile("~/file.docx").render(datas);

參見github項目:https://github.com/Sayi/poi-tl

  • {{template}}

普通文本,渲染數(shù)據(jù)為:String或者TextRenderData

  • {{@template}}

圖片,渲染數(shù)據(jù)為:PictureRenderData

2018年9月9日 10:53