使用fmt标记在jsp中进行国际化

时间:2015-01-22 06:20:21

标签: java jsp

    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
    <html>
    <head>
    <title>JSTL fmt:message Tag</title>
    </head>
    <body>

    <fmt:setLocale value="en"/>
    <fmt:setBundle basename="com.tutorialspoint.Example" var="lang"/>

    <fmt:message key="count.one" bundle="${lang}"/><br/>
    <fmt:message key="count.two" bundle="${lang}"/><br/>
    <fmt:message key="count.three" bundle="${lang}"/><br/>

    </body>
    </html>

我在这里使用的是显示此输出的jstl的fmt标签。     ??? ??? count.one     ??? ??? count.two     ??? ??? count.three

1 个答案:

答案 0 :(得分:1)

您在提到的包中是否有相关的属性文件

<fmt:setBundle basename="com.tutorialspoint.Example" var="lang"/>

如果没有,您需要在com&gt;中拥有属性文件。名为 tutorialspoint.properties 的tutorialspoint应该包含

count.one=one  
count.two=two  
count.three=three

而且,对于setLocale之类的fr,你应该使用 tutorialspoint_fr.properties 等等。