<div dir="ltr" style="text-align: left;" trbidi="on">
<div dir="ltr" style="text-align: left;" trbidi="on"><i><b><;fmt:message>;</b></i> tag is used to map the key from the key-value paired mapped localized message and returns the value by replacing the key to the respective value.</p>
<p><b>Syntax</b><br />
<;fmt:message</p>
<p> ; ; key=&#8221;<;string>;&#8221;</p>
<p> ; ; bundle=&#8221;<;string>;&#8221;</p>
<p> ; ; var=&#8221;<;string>;&#8221;</p>
<p> ; ; scope=&#8221;<;string>;&#8221;/>;</p>
<p><b><br />
Attributes of <i><;fmt:message>;</i>:</b><br />
<b>key : </b>This attribute is an optional attribute that is used for specifying the key (key from the key-value paired localized message) of which value you want to show.<br />
<b>bundle : </b>This attribute is an optional attribute that is used for specifying the Localization context in whose resource bundle message key&#8217;s value you want to show.<br />
<b>var : </b>This attribute is an optional attribute that is used for specifying the name of the scoped variable that have stored the localized message.<br />
<b>scope :</b> This attribute is an optional attribute and is used for specifying the scope of var.</p>
<p> <b>Example :</b></p>
<pre class="highlight" name="code"><;%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>;
<;%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>;
<;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">;
<;html>;
<;head>;
<;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">;
<;title>;JSTL fmt:message Tag<;/title>;
<;/head>;
<;body>;
<;fmt:setBundle basename="myapp" var="lang"/>;
<;fmt:setLocale value="hi_IN"/>;
<;fmt:message key="Name" bundle="${lang}"/>;<;br/>;
<;fmt:message key="Address" bundle="${lang}"/>;<;br/>;
<;fmt:message key="Number" bundle="${lang}"/>;<;br/>;
<;/body>;
<;/html>;
</pre>
<p>
<i><b>myapp.properties</b></i></p>
<pre class="highlight" name="code">Name=u0926u093Fu0928u0947u0936
Address=u0928u094Bu090Fu0921u093E
Number=9988998899
</pre>
<p>
<b>Output :</b></p>
<p> When the execution process will be completed successfully an output will be displayed on your browser as :</p>
<div class="separator" style="clear: both; text-align: center;"><img border="0" src="http://50.87.249.200/~dineshon/wp-content/uploads/2013/10/333-1.png" /></div>
</div>
<div style="background-color: pink; border-width: thin; text-align: center;"><b><;<;<a href="https://dineshonjava.com/2013/10/jstl-timezone-settimezone-fmt-tag.html">Previous</a> <;<; ; ; || <a href="https://dineshonjava.com/2013/10/jsp-standard-tag-library-jstl-tutorial.html">Index </a>||  ; >;>;<a href="https://dineshonjava.com/2013/10/jstl-format-tag-example.html">Next</a> >;>;</b></div>
</div>
<div class="wp-post-navigation"> 
									 <div class="wp-post-navigation-pre"> 
									 <a href="https://dineshonjava.com/jstl-timezone-settimezone-fmt-tag/">Previous</a> 
									 </div> 
									 <div class="wp-post-navigation-next"> 
									 <a href="https://dineshonjava.com/jstl-format-tag-example/">Next</a> 
									 </div> 
									</div>
<script type="text/javascript">
jQuery(document).ready(function($) {
 $.post('https://dineshonjava.com/wp-admin/admin-ajax.php', {action: 'mts_view_count', id: '300'});
});
</script>
Strategy Design Patterns We can easily create a strategy design pattern using lambda. To implement…
Decorator Pattern A decorator pattern allows a user to add new functionality to an existing…
Delegating pattern In software engineering, the delegation pattern is an object-oriented design pattern that allows…
Technology has emerged a lot in the last decade, and now we have artificial intelligence;…
Managing a database is becoming increasingly complex now due to the vast amount of data…
Overview In this article, we will explore Spring Scheduler how we could use it by…