6

我正在使用 JSTL fmttaglib 来显示泰米尔语字符。但我无法显示任何泰米尔语字符。它不是显示泰米尔语字符,而是显示问号字符,如??????. 我试过印地语,它也显示问号。我现在该怎么办?

这是我的代码。我只是尝试用泰米尔语打印 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> 
4

2 回答 2

5
于 2013-01-02T15:41:13.053 回答
0

把这一行放在你的jsp中:

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>

在你的 message.properties ->属性->资源->文本文件编码-> UTF8中更改文件编码

并在您的 mvc-dispatcher-servlet.xml 中查看此 messageSource bean:

<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
        <property name="basename" value="classpath:project" />
        <property name="defaultEncoding" value="UTF-8"/>
</bean>
于 2014-05-19T15:36:36.120 回答