gpt4 book ai didi

java - 如何使用 j2html java 将包含 html 的文本渲染为 html lib

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

一直在使用j2html从Java创建html,运行良好,但我不明白当我想要这样的东西时如何使用

<p>The fox ran over the <b>Bridge</b> in the forest</p>

如果我这样做

import static j2html.TagCreator.*;

public class HtmlTest
{
public static void main(String[] args)
{
System.out.println(p("The fox ran over the " + b(" the bridge") + "in the forest"));
}

}

我明白了

<p>The fox ran over the &lt;b&gt;the bridge&lt;/b&gt; in the forest</p>

即它将粗体视为文本。

注意只是做

import static j2html.TagCreator.*;

public class HtmlTest
{
public static void main(String[] args)
{
System.out.println(p(b("the bridge")));
}

}

渲染是否正确给出

<p><b>the bridge</b></p>

最佳答案

<p>The fox ran over the <b>Bridge</b> in the forest</p>

可以写成

p(join("The fox ran over the", b("Bridge"), "in the forest")

关于java - 如何使用 j2html java 将包含 html 的文本渲染为 html lib,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44587636/

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