插件开发工具库,推荐依赖该工具库。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1017 B

package com.fanruan.api.util;
import com.fr.base.TemplateUtils;
import com.fr.script.Calculator;
import java.util.Map;
/**
* 文本动态渲染工具类
*/
public class RenderKit {
/**
* 根据参数, 来计算文档字符串
* @param text 待渲染的文本模板
* @param map 参数集合
* @return 返回渲染后的文本
* @throws Exception 渲染过程中出现错误则抛出此异常
*/
public static String renderParameter4Tpl(String text, Map<String, Object> map) throws Exception {
return TemplateUtils.renderParameter4Tpl(text, map);
}
/**
* 根据参数, 来计算文档字符串
5 years ago
* @param string 待渲染的文本模板
* @param calculator 参数集合
* @return 返回渲染后的文本
* @throws Exception 渲染过程中出现错误则抛出此异常
*/
5 years ago
public static String render(String string, Calculator calculator) throws Exception {
return TemplateUtils.render(string, calculator);
}
}