Created
April 1, 2018 13:48
-
-
Save darbyluv2code/a8800f8aedd3e74a44797315833a19c8 to your computer and use it in GitHub Desktop.
JSP i18n example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> | |
| <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> | |
| <c:set var="theLocale" value="${not empty param.theLocale ? param.theLocale : pageContext.request.locale }" | |
| scope="session"/> | |
| <fmt:setLocale value="${theLocale}"/> | |
| <fmt:setBundle basename="com.i18n.resources.myLabels"/> | |
| <html> | |
| <body> | |
| <a href="i18n-messages-test.jsp?theLocale=en_US">English (US)</a> | |
| | | |
| <a href="i18n-messages-test.jsp?theLocale=de_DE">German (DE)</a> | |
| | | |
| <a href="i18n-messages-test.jsp?theLocale=es_ES">Spanish (ES)</a> | |
| | | |
| <!-- <a href="i18n-messages-test.jsp?theLocale=kn_KN">Kannada</a> --> | |
| | | |
| <hr> | |
| <fmt:message key="label.greeting"> | |
| </fmt:message> | |
| <br></br> | |
| <fmt:message key="label.firstName"> | |
| </fmt:message> <i>John </i> | |
| <br></br> | |
| <fmt:message key="label.LastName"> | |
| </fmt:message> <i>Williamson </i> | |
| <br></br> | |
| <fmt:message key="Label.welcome"> | |
| </fmt:message> | |
| <br></br> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment