Load Resource Bundle : Resource Bundle « JSP « Java Tutorial

Java Tutorial
1. Language
2. Data Type
3. Operators
4. Statement Control
5. Class Definition
6. Development
7. Reflection
8. Regular Expressions
9. Collections
10. Thread
11. File
12. Generics
13. I18N
14. Swing
15. Swing Event
16. 2D Graphics
17. SWT
18. SWT 2D Graphics
19. Network
20. Database
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web Services SOA
27. EJB3
28. Spring
29. PDF
30. Email
31. J2ME
32. J2EE Application
33. XML
34. Design Pattern
35. Log
36. Security
37. Apache Common
38. Ant
39. JUnit
Java
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Tutorial » JSP » Resource Bundle 
23. 50. 1. Load Resource Bundle
<%--
  Copyright (c2002 by Phil Hanna
  All rights reserved.
  
  You may study, use, modify, and distribute this
  software for any purpose provided that this
  copyright notice appears in all copies.
  
  This software is provided without warranty
  either expressed or implied.
--%>

<%@ page session="false"
         import="java.io.*,
                 java.net.*,
                 java.util.*" %>
<html>
<head>
<title>Using Cookies to Store Preferences</title>
<style><%= STYLESHEET %></style>
</head>
<body>
<table border="0" cellspacing="3" width="500">

   <%-- Language preference bar --%>
   <tr><td class="LB">
      <%= getLanguageBar(request%>
   </td></tr>

</table>

   <%-- Localized greeting --%>
   <h1><%= getGreeting(request%></h1>

   <%-- Store language preference in a persistent cookie --%>
   <% storeLanguagePreferenceCookie(request, response); %>

</body>
</html>
<%!
   // ===========================================
   //    Helper methods included here for
   //    clarity.  A better choice would be
   //    to put them in beans or a servlet.
   // ===========================================

   /**
   * The CSS stylesheet
   */
   private static final String STYLESHEET =
      "h1 { font-size: 130%; }\n"
      ".LB {\n"
      "   background-color: #005A9C;\n"
      "   color: #FFFFFF;\n"
      "   font-size: 90%;\n"
      "   font-weight: bold;\n"
      "   padding: 0.5em;\n"
      "   text-align: right;\n"
      "   word-spacing: 1em;\n"
      "}\n"
      ".LB a:link, .LB a:active, .LB a:visited {\n"
      "   text-decoration: none;\n"
      "   color: #FFFFFF;\n"
      "}\n";

   /**
   * Creates the language preference bar
   */
   private String getLanguageBar
      (HttpServletRequest request)
         throws IOException
   {
      String thisURL = request.getRequestURL().toString();
      StringBuffer sb = new StringBuffer();
      appendLink(sb, thisURL, Locale.ENGLISH);
      appendLink(sb, thisURL, Locale.GERMAN);
      appendLink(sb, thisURL, Locale.FRENCH);
      appendLink(sb, thisURL, Locale.ITALIAN);
      String languageBar = sb.toString();
      return languageBar;
   }

   /**
   * Helper method to create hyperlinks
   */
   private void appendLink
      (StringBuffer sb, String thisURL, Locale locale)
         throws UnsupportedEncodingException
   {
      if (sb.length() 0)
         sb.append(" ");

      String language = locale.getLanguage();

      sb.append("<a href=\"");
      sb.append(thisURL);
      sb.append("?language=");
      sb.append(URLEncoder.encode(language, "UTF-8"));
      sb.append("\">");
      sb.append(locale.getDisplayName(locale));
      sb.append("</a>\n");
   }

   /**
   * Gets the greeting message appropriate for
   * this locale
   */
   private String getGreeting
      (HttpServletRequest request)
   {
      Locale locale = getLocaleFromCookie(request);
      ResourceBundle RB = ResourceBundle.getBundle
         ("welcome", locale);
      String greeting = RB.getString("greeting");
      return greeting;
   }

   /**
   * Determines the locale to use, in the following
   * order of preference:
   *
   * 1. Language parameter passed with request
   * 2. Language cookie previously stored
   * 3. Default locale for client
   * 4. Default locale for server
   */
   private Locale getLocaleFromCookie
      (HttpServletRequest request)
   {
      Locale locale = null;
      String language = request.getParameter("language");
      if (language != null)
         locale = new Locale(language);
      else {
         Cookie[] cookies = request.getCookies();
         if (cookies != null) {
            for (int i = 0; i < cookies.length; i++) {
               Cookie cookie = cookies[i];
               String name = cookie.getName();
               if (name.equals("language")) {
                  language = cookie.getValue();
                  locale = new Locale(language);
                  break;
               }
            }
         }
         if (locale == null)
            locale = request.getLocale();
      }
      return locale;
   }

   /**
   * Stores the language preference
   * in a persistent cookie
   */
   private void storeLanguagePreferenceCookie
      (HttpServletRequest request, HttpServletResponse response)
   {
      Locale locale = getLocaleFromCookie(request);
      String name = "language";
      String value = locale.getLanguage();
      Cookie cookie = new Cookie(name, value);
      final int ONE_YEAR = 60 60 24 365;
      cookie.setMaxAge(ONE_YEAR);
      response.addCookie(cookie);
   }
%>
  Download:  JSPLoadResourceBundle.zip( 9 k)
23. 50. Resource Bundle
23. 50. 1. Load Resource Bundle
23. 50. 2. Include Page in another Directory
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.