JSP实验三(2)response对象的使用

您所在的位置:网站首页 jsp中responsesendredirect JSP实验三(2)response对象的使用

JSP实验三(2)response对象的使用

2023-08-31 09:11| 来源: 网络整理| 查看: 265

JSP实验三(2)response

文章目录 JSP实验三(2)response一、实验题目及要求1 实验内容实验效果实例input.jspresult.jsp 二、实验代码及效果1 input.jspresult.jsp效果实例 总结

一、实验题目及要求 1 实验内容

编写两个JSP页面input.jsp和result.jsp。input.jsp页面提交一个数字给result.jsp页面,result.jsp页面使用response对象做出动态响应。 1 input.jsp的具体要求 input.jsp提供表单,用户在表单中输入一个数字,提交给result.jsp页面。 2 result.jsp result.jsp页面首先使用request对象获得input.jsp页面提交的数字,然后根据数字的大小作出不同的响应。 如果数字小与0,response对象的调用setContentType(String s)方法将contentType属性的值设置为text/plain,同时输出数字的平方; 如果数字大于等于0并且小于100,response对象的调用setContentType(String s)方法将contentType属性的值设置为application/msword,同时输出数字的立方; 如果数字大于等于100,response对象调用sendError(int n)方法将状态行的内容设置为404; 如果用户在input.jsp页面输入了非数字,response对象调用**sendRedirect(URL url)**方法将用户的重定向到input.jsp页面。

实验效果实例 input.jsp

在这里插入图片描述

result.jsp

在这里插入图片描述 在这里插入图片描述 在这里插入图片描述

二、实验代码及效果 1 input.jsp Title 输入数字 result.jsp Title out.print(x+"的平方:"+(x*x)); response.setContentType ("text/plain;charset=UTF-8"); } else if(x>=0&&xresponse.sendRedirect("input.jsp"); } %> 效果实例

在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 在这里插入图片描述

总结 老师给的题目实例有问题,一切以实际为准String a=request.getParameter(“sideA”);获取input.jsp中输入框的值response.setContentType (“text/plain;charset=UTF-8”);将当前页面转换为纯文本文档response.setContentType (“application/msword;charset=UTF-8”);application/msword:Word文件,我们这里转换成了一个text文件response.sendError(404); 返回404response.sendRedirect(“input.jsp”);重定向input.jsp


【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3