The JSTL Formatting Tag is used to specify the encoding type.
Syntax:
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" %>
<html>
<head>
<title>fmt:requestEncoding JSTL formatting tag example</title>
</head>
<body>
<fmt:requestEncoding value="UTF-8" />
<fmt:bundle basename="com.javawithease.properties.message">
<fmt:message key="message.first"/><br/>
<fmt:message key="message.second"/><br/>
<fmt:message key="message.third"/>
</fmt:bundle>
</body>
</html>
|
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
<web-app>
<welcome-file-list>
<welcome-file>test.jsp</welcome-file>
</welcome-file-list>
</web-app>
|
Output:
No comments:
Post a Comment