gpt4 book ai didi

java - 如何将字符串编码为UTF8,然后在html中正确显示?

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

我有一个程序,其中屏幕上显示一个表格。只要没有重音符号,内容就会正确显示。

这是我的代码

StringBuffer sBuff = new StringBuffer();
if(!("CSV".equalsIgnoreCase(exportFormat) || "HTML".equalsIgnoreCase(exportFormat))){
sBuff.append("<p title=\""+displayparseado+"\">");
sBuff.append(displayparseado);
sBuff.append("</p>");
}
else{
sBuff.append(display);
}

我也尝试过解析字符串。

byte arr[] = display.getBytes("UTF-8");
String displayparseado = new String(arr);

预期输出:Desripción de prueba。

实际输出:

enter image description here

注释;我无法使用外部库。

最佳答案

尝试StringEscapeUtils转义 html 的字符串。到目前为止,这对我来说效果很好。

关于java - 如何将字符串编码为UTF8,然后在html中正确显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56321568/

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