JSTL fmt:requestEncoding Formatting Tag

The JSTL <fmt:requestEncoding> Formatting Tag is used to specify the encoding type.

Syntax:

<fmt: requestEncoding value=”encodingType” />

fmt:requestEncoding tag attributes:

Attribute Description Required
key It specify the name of character encoding you want to apply when decoding request parameters. Yes

Example:

test.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>


	
	 fmt:requestEncoding JSTL formatting tag example
	
	
	     
	     
		   

message_en_US.properties

message.first = This is first message using en_US locale.
message.second = This is second message en_US locale.
message.third =This is third message en_US locale.

web.xml


	
  
          test.jsp
  	


Output:

jsp example 51
 
Download this example.
 
Next Topic: JSTL Functions with example.
Previous Topic: JSTL fmt:setTimeZone Formatting Tag with example.