process_nw.jsp
来自「用jsp语言自己做的一个网站bookshot的全套程序以及一些样例。完全属于原创」· JSP 代码 · 共 22 行
JSP
22 行
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>
<fmt:requestEncoding />
<html>
<head>
<title>Processing Non-Western European Input</title>
</head>
<body bgcolor="white">
<h1>Processing Non-Western European Input</h1>
Text string converted to a Java Unicode string:
<c:out value="${param.text}" />
<p>
Date string converted to the internal Java Date type:
<fmt:parseDate value="${param.date}" dateStyle="full" />
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?