首页 > Web开发 > 详细

JSP中获取TextArea中的值

时间:2014-06-02 14:05:38      阅读:597      评论:0      收藏:0      [点我收藏+]

1.写这个大部分人都会,获取其中的值,但获取的时候就会出现我们不愿意看见其中的乱码问题

今天写这个就是来解决乱码问题。下面以一个小例子来讲解

2.

(1)首先编写一个JSP页面,用来接收来自前端页面的输入

bubuko.com,布布扣
 1 <%@ page language="java" contentType="text/html; charset=UTF-8"
 2     pageEncoding="UTF-8"%>
 3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 4 <html>
 5 <head>
 6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 7 <title>Insert title here</title>
 8 </head>
 9 <body>
10     <form action="view.jsp" method = "post">
11         <textarea rows="10" cols="30" name = "content"></textarea>
12         <input type = "submit" value="submit"/>
13     </form>
14 </body>
15 </html>
input.jsp

(2)编写第二个JSP页面,用来显示

bubuko.com,布布扣
 1 <%@ page language="java" contentType="text/html; charset=UTF-8"
 2     pageEncoding="UTF-8"%>
 3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 4 <html>
 5 <head>
 6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 7 <title>Insert title here</title>
 8 </head>
 9 <body>
10     <%
11         request.setCharacterEncoding("UTF-8");
12         String content = request.getParameter("content");
13         out.println(content);
14     %>
15 </body>
16 </html>
view.jsp

3.

为什么这样呢,原因是当网前端浏览器提交时,要只定编码

4.结果图

输入图

bubuko.com,布布扣

结果图

bubuko.com,布布扣

 

好了,验证完成.

 

JSP中获取TextArea中的值,布布扣,bubuko.com

JSP中获取TextArea中的值

原文:http://www.cnblogs.com/sxmcACM/p/3763054.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!