我正在使用 JSTL fmt
taglib 来显示泰米尔语字符。但我无法显示任何泰米尔语字符。它不是显示泰米尔语字符,而是显示问号字符,如??????
. 我试过印地语,它也显示问号。我现在该怎么办?
这是我的代码。我只是尝试用泰米尔语打印 Hello World。
fileproperty.properties
:
helloworld=வணக்கம் உலகம்
Hello.jsp
:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org /TR/html4/loose.dtd">
<html>
<fmt:setLocale value="ta-IN"/>
<fmt:setBundle basename="fileproperty"/>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Home</title>
</head>
<body>
<fmt:message key="helloworld"/>
</body>
</html>