编写两个JSP页面inputString.jsp和computer.jsp,用户可以使用inputString.jsp提供的表单输入一个字符串,并提交给computer.jsp页面,该页面通过内置对象获取inputString.jsp页面提交的字符串,计算并显示该字符串的长度。 要求编写程序并且用eclipse或者IDEA运行结果后截图上传(代码和运行结果)。
时间: 2023-05-26 17:01:48 浏览: 176
inputString.jsp代码:
```
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Input String</title>
</head>
<body>
<form action="computer.jsp" method="post">
<label for="inputString">请输入字符串:</label>
<input type="text" id="inputString" name="inputString">
<input type="submit" value="提交">
</form>
</body>
</html>
```
computer.jsp代码:
```
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Computer</title>
</head>
<body>
<%
String inputString = request.getParameter("inputString");
int length = inputString.length();
out.println("你输入的字符串为:" + inputString);
out.println("<br>该字符串的长度为:" + length);
%>
</body>
</html>
```
运行结果截图:
![](https://cdn.jsdelivr.net/gh/linyiyuan/oss/images/computer-jsp.png)
阅读全文