JSP 國際化
在開始前,需要先解釋幾個重要的概念:
國際化(i18n):表示一個頁面根據訪客的語言或國家來呈現不同的翻譯版本。
在地化(l10n):為網站添加資源,以使它適應不同的地區和文化。例如網站的印度語版本。
區域:這是一個特定的區域或文化,通常被認為是語言標誌和國家標誌透過下劃線連接起來。例如"en_US"代表美國英語地區。
如果想要建立一個全球化的網站,就需要關心一系列專案。本章將會詳細告訴您如何處理國際化問題,並給了一些例子來加深理解。
JSP容器能夠根據request的locale屬性來提供正確地頁面版本。接下來給出如何透過request物件來獲得Locale物件的語法:
java.util.Locale request.getLocale()
偵測Locale
下表列舉出了Locale物件中比較重要的方法,用於偵測request物件的地區,語言,和區域。所有這些方法都會在瀏覽器中顯示國家名稱和語言名稱:
& 說明 | |
String getCountry()
| |
String getDisplayCountry()
| |
String getLanguage()
| |
String getDisplayLanguage()
|
實例示範
這個範例告訴我們如何在JSP中顯示語言和國家:
<%@ page import="java.io.*,java.util.Locale" %> <%@ page import="javax.servlet.*,javax.servlet.http.* "%> <% //获取客户端本地化信息 Locale locale = request.getLocale(); String language = locale.getLanguage(); String country = locale.getCountry(); %> <html> <head> <title>Detecting Locale</title> </head> <body> <center> <h1>Detecting Locale</h1> </center> <p align="center"> <% out.println("Language : " + language + "<br />"); out.println("Country : " + country + "<br />"); %> </p> </body> </html>
語言設定
JSP可以使用西歐語言來輸出一個頁面,例如英語,西班牙語,德語,法語,義大利語等等。由此可見,設定Content-Language訊息標頭來正確顯示所有字元是很重要的。
第二點就是,需要使用HTML字符實體來顯示特殊字符,例如"ñ" 代表的是"?","¡"代表的是"?" :
<%@ page import="java.io.*,java.util.Locale" %> <%@ page import="javax.servlet.*,javax.servlet.http.* "%> <% // Set response content type response.setContentType("text/html"); // Set spanish language code. response.setHeader("Content-Language", "es"); String title = "En Espa?ol"; %> <html> <head> <title><% out.print(title); %></title> </head> <body> <center> <h1><% out.print(title); %></h1> </center> <div align="center"> <p>En Espa?ol</p> <p>?Hola Mundo!</p> </div> </body> </html>
區域特定日期
可以使用java.text.DateFormat類別和它的靜態方法getDateTimeInstance()來格式化日期和時間。接下來的這個範例顯示如何根據指定的區域來格式化日期和時間:
<%@ page import="java.io.*,java.util.Locale" %> <%@ page import="javax.servlet.*,javax.servlet.http.* "%> <%@ page import="java.text.DateFormat,java.util.Date" %> <% String title = "Locale Specific Dates"; //Get the client's Locale Locale locale = request.getLocale( ); String date = DateFormat.getDateTimeInstance( DateFormat.FULL, DateFormat.SHORT, locale).format(new Date( )); %> <html> <head> <title><% out.print(title); %></title> </head> <body> <center> <h1><% out.print(title); %></h1> </center> <div align="center"> <p>Local Date: <% out.print(date); %></p> </div> </body> </html>
區域特定貨幣
可以使用java.text.NumberFormat類別和它的靜態方法getCurrencyInstance()來格式化數字。例如在區域特定貨幣中的long型和double型。接下來的範例顯示如何根據指定的區域來格式化貨幣:
<%@ page import="java.io.*,java.util.Locale" %> <%@ page import="javax.servlet.*,javax.servlet.http.* "%> <%@ page import="java.text.NumberFormat,java.util.Date" %> <% String title = "Locale Specific Currency"; //Get the client's Locale Locale locale = request.getLocale( ); NumberFormat nft = NumberFormat.getCurrencyInstance(locale); String formattedCurr = nft.format(1000000); %> <html> <head> <title><% out.print(title); %></title> </head> <body> <center> <h1><% out.print(title); %></h1> </center> <div align="center"> <p>Formatted Currency: <% out.print(formattedCurr); %></p> </div> </body> </html>
區域特定百分比
可以使用java.text.NumberFormat類別和它的靜態方法getPercentInstance()來格式化百分比。接下來的例子告訴我們如何根據指定的區域來格式化百分比:
<%@ page import="java.io.*,java.util.Locale" %> <%@ page import="javax.servlet.*,javax.servlet.http.* "%> <%@ page import="java.text.NumberFormat,java.util.Date" %> <% String title = "Locale Specific Percentage"; //Get the client's Locale Locale locale = request.getLocale( ); NumberFormat nft = NumberFormat.getPercentInstance(locale); String formattedPerc = nft.format(0.51); %> <html> <head> <title><% out.print(title); %></title> </head> <body> <center> <h1><% out.print(title); %></h1> </center> <div align="center"> <p>Formatted Percentage: <% out.print(formattedPerc); %></p> </div> </body> </html>