1. Währung formatieren
In vielen Ländern der Welt gibt es unterschiedliche Währungsformate und Zahlenformatierungskonventionen. Die korrekte Formatierung und Anzeige der Währung für eine bestimmte Lokalisierungsumgebung ist ein wichtiger Teil der Lokalisierung.
<%@ page pageEncoding="UTF-8" %>
<%@ taglib prefix="c" uri=" http://java.sun.com/jsp/jstl/core " %>
<%@ taglib prefix="fmt" uri=" http://java.sun.com/jsp/jstl/fmt " %>
<html>
<head>
<title>Währungsformatierung</title>
</head>
<Körper>
<h1>Währungsformatierung und Gebietsschemata</h1>
<h3>Englisch, Großbritannien</h3>
<fmt:setLocale value="en_GB" />
<fmt:formatNumber type="currency" value="80000" /><br/>
<h3>Englisch, USA</h3>
<fmt:setLocale value="en_US" />
<fmt:formatNumber type="currency" value="80000" /><br/>
<h3>Französisch, Frankreich</h3>
<fmt:setLocale value="fr_FR" />
<fmt:formatNumber type="currency" value="80000" /><br/>
<h3>Japanisch, Japan</h3>
<fmt:setLocale value="ja_JP" />
<fmt:formatNumber type="currency" value="80000" /><br/>
<h3>Koreanisch, Korea</h3>
<fmt:setLocale value="ko_KR" />
<fmt:formatNumber type="currency" value="80000" /><br/>
<h3>Spanisch, Spanien</h3>
<fmt:setLocale value="es_ES" />
<fmt:formatNumber type="currency" value="80000" /><br/>
<h3>Arabisch, Ägypten</h3>
<fmt:setLocale value="ar_EG" />
<fmt:formatNumber type="currency" value="80000" /><br/>
<h3>Verwenden lokaler numerischer Formatierung für verschiedene Währungen</h3>
<h4>Englisch, Großbritannien</h4>
<fmt:setLocale value="en_GB" />
<fmt:formatNumber type="currency" value="80000" /><br/>
<fmt:formatNumber type="currency" value="80000" paymentCode="EUR"/><br/>
</body>
</html>
2. Die Formatierung von Datumsangaben
ähnelt der Formatierung von Zahlen und Währungen, und die Lokalisierungsumgebung beeinflusst auch die Art und Weise, wie Datums- und Uhrzeitangaben generiert werden.
<%@ page pageEncoding="UTF-8" %>
<%@ taglib prefix="c" uri=" http://java.sun.com/jsp/jstl/core " %>
<%@ taglib prefix="fmt" uri=" http://java.sun.com/jsp/jstl/fmt " %>
<html>
<Kopf>
<title>Datumsformatierung</title>
</head>
<Körper>
<h1>Datumsformatierung und Gebietsschema</h1>
<fmt:timeZone value="EST">
<jsp:useBean id="currentTime" class="java.util.Date"/>
<h3>Englisch, Großbritannien</h3>
<fmt:setLocale value="en_GB" />
<fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>
<h3>Englisch, USA</h3>
<fmt:setLocale value="en_US" />
<fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>
<h3>Französisch, Frankreich</h3>
<fmt:setLocale value="fr_FR" />
<fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>
<h3>Japanisch, Japan</h3>
<fmt:setLocale value="ja_JP" />
<fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>
<h3>Koreanisch, Korea</h3>
<fmt:setLocale value="ko_KR" />
<fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>
<h3>Spanisch, Spanien</h3>
<fmt:setLocale value="es_ES" />
<fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>
<h3>Arabisch, Ägypten</h3>
<fmt:setLocale value="ar_EG" />
<fmt:formatDate type="both" dateStyle="full" timeStyle="full" value="${currentTime}" /><br/>
</fmt:timeZone>
</body>
</html>
<fmt:formatDate>Der Aktionsattributtyp
: kann Uhrzeit, Datum oder beides sein. Steuert, ob nur Uhrzeit, nur Datum oder sowohl Uhrzeit als auch Datum generiert werden.
dateStyle: kann kurz, mittel, lang oder vollständig sein (Standard). Steuert das spezifische Format, das für gedruckte Datumsangaben verwendet wird.
timeStyle: kann kurz, mittel, lang oder vollständig sein (Standard). Steuert das spezifische Format, das für die Druckzeiten verwendet wird.
Wert: Dies ist ein Wert vom Typ java.util.Date, der zum Generieren von Datum und Uhrzeit verwendet wird.