Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有人可以推荐一个简单的过程来从预先构建的“模板”生成 rtf 文档并填充字段。
我宁愿避免使用 ms word 自动化类型的解决方案,因为我不能保证 ms office 版本等。
生成的文件需要是可编辑的,所以我不能去 pdf
是像使用 nvelocity 之类的东西一样简单,还是我需要做一些更有趣的事情?谢谢
您始终可以使用关键字:示例:
这是需要[替换]的[文本]
并使用 stringbuilder 替换关键字。
StringBuilder sb = new StringBuilder(yourTemplate); sb.Replace("[text]", "car"); sb.Replace("[replaced]", "washed");
因此,如果您得到我,最终文本将是:
这是一辆需要清洗的汽车。
这只是一种方法。