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

📄 resourceprops.jsp

📁 JSP2.0实用教程实例源码
💻 JSP
字号:
<%@ page contentType="text/html;charset=GBk" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
选择locale设置:
<a href='?locale=zh'>中文</a> &#149;
<a href='?locale=en'>English</a> <br/>
<!-- 依据参数locale的值设置本地属性 -->
<c:if test="${!empty param.locale}">
  <fmt:setLocale value="${param.locale}" scope="page"/>
</c:if>
<!-- 使用Java类i18n.Resources定义的资源包 -->
<fmt:bundle basename="i18n.Resources" prefix="labels.">
	<html>
	<body>
	<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 + -