javax.servlet.jsp.jstl.fmt

Class LocaleSupport


  • public class LocaleSupport
    extends Object
    Class which exposes the locale-determination logic for resource bundles through convenience methods.

    This class may be useful to any tag handler implementation that needs to produce localized messages. For example, this might be useful for exception messages that are intended directly for user consumption on an error page.

    Author:
    Jan Luehe
    • Constructor Detail

      • LocaleSupport

        public LocaleSupport()
    • Method Detail

      • getLocalizedMessage

        public static String getLocalizedMessage(PageContext pageContext,
                                                 String key)
        Retrieves the localized message corresponding to the given key.

        The given key is looked up in the resource bundle of the default I18N localization context, which is retrieved from the javax.servlet.jsp.jstl.fmt.localizationContext configuration setting.

        If the configuration setting is empty, or the default I18N localization context does not contain any resource bundle, or the given key is undefined in its resource bundle, the string "???<key>???" is returned, where "<key>" is replaced with the given key.

        Parameters:
        pageContext - the page in which to get the localized message corresponding to the given key
        key - the message key
        Returns:
        the localized message corresponding to the given key
      • getLocalizedMessage

        public static String getLocalizedMessage(PageContext pageContext,
                                                 String key,
                                                 String basename)
        Retrieves the localized message corresponding to the given key.

        The given key is looked up in the resource bundle with the given base name.

        If no resource bundle with the given base name exists, or the given key is undefined in the resource bundle, the string "???<key>???" is returned, where "<key>" is replaced with the given key.

        Parameters:
        pageContext - the page in which to get the localized message corresponding to the given key
        key - the message key
        basename - the resource bundle base name
        Returns:
        the localized message corresponding to the given key
      • getLocalizedMessage

        public static String getLocalizedMessage(PageContext pageContext,
                                                 String key,
                                                 Object[] args)
        Retrieves the localized message corresponding to the given key, and performs parametric replacement using the arguments specified via args.

        See the specification of the <fmt:message> action for a description of how parametric replacement is implemented.

        The localized message is retrieved as in getLocalizedMessage(pageContext, key).

        Parameters:
        pageContext - the page in which to get the localized message corresponding to the given key
        key - the message key
        args - the arguments for parametric replacement
        Returns:
        the localized message corresponding to the given key
      • getLocalizedMessage

        public static String getLocalizedMessage(PageContext pageContext,
                                                 String key,
                                                 Object[] args,
                                                 String basename)
        Retrieves the localized message corresponding to the given key, and performs parametric replacement using the arguments specified via args.

        See the specification of the <fmt:message> action for a description of how parametric replacement is implemented.

        The localized message is retrieved as in getLocalizedMessage(pageContext, key, basename).

        Parameters:
        pageContext - the page in which to get the localized message corresponding to the given key
        key - the message key
        args - the arguments for parametric replacement
        basename - the resource bundle base name
        Returns:
        the localized message corresponding to the given key

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Version en cache

21/08/2025 18:32:40 Cette version de la page est en cache (à la date du 21/08/2025 18:32:40) afin d'accélérer le traitement.
Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la version plus récente de la page.

Document créé le 11/06/2005, dernière modification le 18/08/2025
Source du document imprimé : https://www.gaudry.be/java-api-javaee-rf-javax/servlet/jsp/jstl/fmt/LocaleSupport.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com, LocaleSupport (Java(TM) EE 7 Specification APIs)

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.