jsp实现textarea中的文字保存换行空格存到数据库的方法

所属分类: 网络编程 / JSP编程 阅读数: 1669
收藏 0 赞 0 分享

UploadNews.jsp

<%@ page language="java" contentType="text/html; charset=utf-8"
 pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>上传新闻</title>
<SCRIPT LANGUAGE="JavaScript">
function upload(){
 document.getElementById("article").value = document
 .getElementById("content").value;
 document.getElementById("formid").submit();
 }
</SCRIPT>
</head>
<body>
 <form method="post" action="ShangchuanNews.jsp" id="formid">
  <table border="0" align="center">
   <tr>
    <td>title&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="text"
     name="title" value="a" size="40">
    </td>
   </tr>
   <tr>
    <td>author&nbsp;&nbsp;<input type="text" name="author"
     size="40">
    </td>
   </tr>
   <tr>
    <td><input type="hidden" id="article"
     name="articleName" /></td>
   </tr>
   <tr>
    <td>date(xxxx.xx.xx)<input type="text" name="date" size="40">
    </td>
   </tr>
   <tr>
    <td><div align="center">
      <input type="button" value="submit" class="btn2" onclick = "upload();" />
     </div></td>
   </tr>
   <tr>
    <td><textarea rows="30" cols="80" id="content"></textarea></td>
   </tr>
  </table>
 </form>
</body>
</html>

换行函数在ShangchuanNews.jsp 代码如下

<%@page import="java.io.PrintWriter"%>
<%@page import="java.net.URLDecoder"%>
<%@ page language="java" contentType="text/html; charset=utf-8" 
 pageEncoding="utf-8" %> 
<%@ page import="java.sql.*" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 

<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; utf-8"> 
<title>上传新闻</title> 
</head> 
<body> 
<%! // 字符处理函数 换行符变成<br>
public String turn(String str) { 
 while (str.indexOf("\n") != -1) { 
  str = str.substring(0, str.indexOf("\n")) + "<br>" 
    + str.substring(str.indexOf("\n") + 1); 
 } 
 while (str.indexOf(" ") != -1) { 
  str = str.substring(0, str.indexOf(" ")) + "&nbsp" 
    + str.substring(str.indexOf(" ") + 1); 
 } 
 return str; 
} 
%>
<% 
try {
 request.setCharacterEncoding("utf-8");
 String title = request.getParameter("title");
 String author = request.getParameter("author");
 String article = request.getParameter("articleName");
 String articlebr = turn(article);
 String date = request.getParameter("date");
 String driverClass="com.mysql.jdbc.Driver";
 String url = "jdbc:mysql://****.****/****?characterEncoding=utf8";//存到数据库不会乱码
 String user="***"; 
 String password="****";
 Connection conn;
 int i=0;
 Class.forName(driverClass).newInstance();
 conn = DriverManager.getConnection(url,user,password);
 String sql = "insert into news (id,title,author,article,date) "
   + "values(?,?,?,?,?)";
 Connection conn1 = DriverManager.getConnection(url, user, password);
 PreparedStatement pstmt;
 pstmt = (PreparedStatement) conn1.prepareStatement(sql);
 pstmt.setString(1, null);
 pstmt.setString(2, title);
 pstmt.setString(3, author);
 pstmt.setString(4, articlebr);
 pstmt.setString(5, date);
 i = pstmt.executeUpdate();
 conn1.close();
 pstmt.close();
 out.println("<br>上传成功");
} catch (Exception e) {
 // TODO Auto-generated catch block
 e.printStackTrace();
}
%> 
</body> 
</html> 

以上这篇jsp实现textarea中的文字保存换行空格存到数据库的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

更多精彩内容其他人还在看

table中点击表头实现排序的功能示例介绍

获取上次点击的表头的名称和这次点击的表头的名称做比较,如果两者相同就按原先相反的顺序排列,否则新列升序排列
收藏 0 赞 0 分享

jsp防止跨域提交数据的具体实现

这篇文章主要介绍了jsp防止跨域提交数据的具体实现,需要的朋友可以参考下
收藏 0 赞 0 分享

解决jsp页面使用网络路径访问图片的乱码问题

这篇文章主要介绍了jsp页面使用网络路径访问图片的乱码问题的解决方法 ,需要的朋友可以参考下
收藏 0 赞 0 分享

在jsp页面如何获得url参数

这篇文章主要介绍了在jsp页面获得url参数的方法,需要的朋友可以参考下
收藏 0 赞 0 分享

几种防止表单重复提交的方法

表单重复提交是在多用户Web应用中最常见的一个问题,很多场合都会遇到这种情况,下面与大家分享下防止表单重复提交的几种策略
收藏 0 赞 0 分享

struts2集成javamail发邮件示例详解

这篇文章主要介绍了struts2集成javamail发邮件示例,需要的朋友可以参考下
收藏 0 赞 0 分享

不让tomcat显示目录文件列表的配置方法

这篇文章主要介绍了不让tomcat显示目录文件列表的配置方法,这里需要修改conf/web.xml文件,需要的朋友可以参考下
收藏 0 赞 0 分享

jsp使用cookie存储中文示例分享

这篇文章主要介绍了jsp使用cookie存储中文示例,需要的朋友可以参考下
收藏 0 赞 0 分享

jsp中include指令静态导入和动态导入的区别详解

这篇文章主要介绍了jsp中include指令静态导入和动态导入的区别,通过示例和图文讲解可以更好的看出他们的区别,需要的朋友可以参考下
收藏 0 赞 0 分享

jsp中文显示问号问题解决方法

jsp中想要输出的中文被显示成问号?在eclipse-windows- preferences中搜索jsp,Encoding选项中选择 Chinese,此问题便可解决
收藏 0 赞 0 分享
查看更多