<%@ page contentType="text/htmlcharset=gb2312" %>
<%
String num = (String)request.getParameter("num")
try{
int n = Integer.parseInt(num)
if(n%2==0)
request.setAttribute("type","偶数")
else
request.setAttribute("type","奇数")
request.getRequestDispatcher("test03.jsp").forward(request,response)
}catch(Exception e){
e.printStackTrace()
}
%>
<%@ page contentType="text/htmlcharset=gb2312" %>
<% String type = (String)request.getAttribute("type")%>
<html>
<head><title>页面一</title></head>
<body>
<form action="test02.jsp" method="get">
请输入一个数字:<input type="text" name="num" />
<input type="submit" value="提交" />
</form>
${type }
</body>
</html>
JSP部署于网络服务器上,可以响应客户端发送的请求,那么jsp文件怎么创建?下面一起来看解答。
1、 进入MyEclipse窗口。
2、 点下windows,进入Windows列表。
3、 点下preferences,进入到preferences窗口。
4、 搜索下jsp,如图。
5、 点下窗口中圈出的jsp,进入到jsp串口,点下下拉框选择编码。
6、 点下OK,就完成编码设置了,可以新建的jsp。
以上的就是关于jsp文件怎么创建的内容介绍了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)