精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

JSP 國際化

jsp 國際化

在開始前,需要解釋幾個重要的概念:

  • 國際化(i18n):表明一個頁面根據訪問者的語言或國家來呈現不同的翻譯版本。
  • 本地化(l10n):向網站添加資源,以使它適應不同的地區和文化。比如網站的印度語版本。
  • 區域:這是一個特定的區域或文化,通常認為是一個語言標志和國家標志通過下劃線連接起來。比如"en_us"代表美國英語地區。

如果想要建立一個全球化的網站,就需要關心一系列項目。本章將會詳細告訴您如何處理國際化問題,并給出了一些例子來加深理解。

jsp容器能夠根據request的locale屬性來提供正確地頁面版本。接下來給出了如何通過request對象來獲得locale對象的語法:

java.util.locale request.getlocale() 

檢測locale

下表列舉出了locale對象中比較重要的方法,用于檢測request對象的地區,語言,和區域。所有這些方法都會在瀏覽器中顯示國家名稱和語言名稱:

序號 方法 & 描述
1 string getcountry()

返回國家/地區碼的英文大寫,或 iso 3166 2-letter 格式的區域
2 string getdisplaycountry()

返回要顯示給用戶的國家名稱
3 string getlanguage()

返回語言碼的英文小寫,或iso 639 格式的區域
4 string getdisplaylanguage()

返回要給用戶看的語言名稱
5 string getiso3country()

返回國家名稱的3字母縮寫
6 string getiso3language()

返回語言名稱的3字母縮寫

實例演示

這個例子告訴我們如何在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 字符實體來顯示特殊字符,比如 "&#241;" 代表的是 ñ,"&#161;"代表的是 ¡ :

<%@ 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>
相關文章