gpt4 book ai didi

java - 替换 html 文件中的模板

转载 作者:行者123 更新时间:2023-12-02 08:30:34 33 4
gpt4 key购买 nike

给定一本字典:

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/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com