resourceprops1.jsp

来自「JSP2.0实用教程实例源码」· JSP 代码 · 共 32 行

JSP
32
字号
<%@ page contentType="text/html;charset=GB2312" import="java.util.*"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<!-- 使用属性文件:ResourceProps.properties和ResourceProps_zh.properties定义的资源包 -->
<html>
<body>
选择locale设置:
<a href='?locale=zh'>中文</a> &#149;
<a href='?locale=en'>English</a> <br/>
<c:if test="${!empty param.locale}">
  <fmt:setLocale value="${param.locale}" scope="page"/>
</c:if>

<fmt:bundle basename="ResourceProps" prefix="labels.">
<h1><fmt:message key="greetHeading"/></h1>
<p>
<fmt:message key="welcomeText"/>:
<p>
<form action="ResourceProps.jsp" method="post">
	<fmt:message key="namePrompt"/>
	<input type="text" name="name"><br>
	<fmt:message key="agePrompt"/>
	<input type="text" name="age"><br>
	<fmt:message key="placePrompt"/>
	<input type="text" name="place"><br>
	<p>
	<input type="submit" value="<fmt:message key='submitButtonText'/>">
</form>
</body>
</html>
</fmt:bundle>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?