⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 resourceprops1.jsp

📁 JSP2.0实用教程实例源码
💻 JSP
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -