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.
我有一个类似于模板的 HTML 文件。例如:
亲爱的名字姓氏
包含在 HTML 文件中。在运行时,我想用亲爱的某人的名字替换它。这在Java中怎么可能?
在谷歌中查看后,我找不到任何东西。我知道我可以在 XML 中做到这一点,但在这种情况下,我必须使用上述方法。
根据文件的复杂程度,一个简单的String.replace()或String.replaceAll()可能会做。
如果您有更复杂的文件,我建议您使用Velocity或Freemarker等模板引擎。