我在使用以下代码的<fmt:formatNumber type="currency">
显示欧元符号时遇到问题。
<fmt:formatNumber value="$l_thresholdValue}" minFractionDigits="0" type="currency" var="thresholdValue"/>
此代码在其他jsp页面中工作正常。我尝试了所有可能的方式,例如将文件保存在
UTF-8
中,并在jsp文件中包括编码样式<%@page contentType="text/html;charset=UTF-8"%>
。欧元符号仍然显示为“
?
”谁能帮我
最佳答案
最好使用这个:
<meta http-equiv="content-type" content="text/html; charset=iso-8859-15">
我希望这能帮到您
关于java - 欧元符号显示为“?”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21040997/