给定字典:
1=f00
2=bar
3=larodi
.
.
.
和一些html文件,例如:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
content content content {1} bla
bla bla {3} &%$*#$*$%# {2} and so on...
</body>
</html>
如何用Java将文件中的键替换为其值?我已经读过有关java.text.MessageFormat的内容,但是无法提出一种使用它的方法。
最佳答案
String result = MessageFormat.format(htmlString, "foo", "bar", "larodi");
String[] paramas = {"foo" , ....};
String result = MessageFormat.format(htmlString, params);
htmlString是您的html内容。
关于java - 替换HTML文件中的模板,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3503850/