avatar

JSP-表单

我们新建一个jsp文件 (hello.jsp),在body内写入以下代码

1
2
3
4
<form name="form1" method="post" action="hello_result.jsp">
<input type="text" name="hello">
<input type="submit" name="提交">
</form>

再新建一个hello_result.jsp,在body内写入以下代码

1
2
3
4
5
<%
request.setCharacterEncoding("utf-8");
String temp = request.getParameter("hello");
out.print(temp);
%>

我们再 hello.jsp 页面输入 Hello World
然后会自动跳转到 hello_result.jsp ,并且我们会看到 Hello World 被输出来了

文章作者: 咲夜南梦
文章链接: http://yoursite.com/2019/02/28/JSP-%E8%A1%A8%E5%8D%95/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 咲夜南梦's 博客
打赏
  • 微信
    微信
  • 支付宝
    支付宝

评论