一个jsp初学者的学习过程(七)
theunforgiven
第七章 超长文本的操作——clob类型数据的存取
回到我编写留言板的时候,当时要存放留言板的正文内容,发现varchar2()(可变长度的字符串)只能存4000字节,也就是2000个汉字,这也太少了啊,查一下数据库类型的资料,发现有这么几个类型:long,2g(要是我没记错的话,它是为了向前兼容,不推荐使用);clob,4g,字符;blob,4g,二进制。看来超长文本应该使用clob了,图片自然是用blob了,询问了一下别人,知道这两种类型是不能像varchar2()那样直接存的,只好作罢,先用varchar2()顶一阵。
后来我终于有空了,决心要完成这个任务,在网上查了一番资料,看了别人的例子,总算是无师自通看明白了:存的时候需要使用empty_clob()(这个不是java的函数)先存一个空的标识(用我的理解就是先初始化一下),然后通过“流”将数据写入。下面是代码,其中try里面的是clob类型的存操作:
———————————–save_new.jsp——————————————
<%@ include file="include.inc"%>
<%@ page contenttype="text/html;charset=gb2312" errorpage="request_error.htm"%>
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<%
string title = request.getparameter("title");
string kind=request.getparameter("kind");
string newtitle=title.replaceall("","");//用replaceall()将text字串中所有的单引号改成连续两个单引号
string text = request.getparameter("text");
//string text1=text.replaceall("","");存clob时不需将单引号改成连续两个单引号
string text2=text.replaceall("<","<");//用replaceall()将字串中所有的<改成<
string newtext=text2.replaceall(">",">");//用replaceall()将字串中所有的>改成>
//replace只能处理单个字符!!
//改是为了不影响数据库的查询语句
//改<>是防止网页把他们生成标签,比如:<table>,<form>等
string author=session.getattribute("name").tostring();
out.println(author);
long id=system.currenttimemillis();//取得一个时间,从1970-1-1 0:00:00开始到当前时间的毫秒数,用这个数作为该文章的id标识
java.text.simpledateformat formatter = new java.text.simpledateformat("yyyy-mm-dd hh:mm:ss"); //格式化日期
java.util.date currenttime_1 = new java.util.date();//得到当前系统时间
string strdate = formatter.format(currenttime_1); //将日期时间转换成字符串形式
connection con = null;
preparedstatement stmt = null;//不能用statement,我也不知道为什么,查了api,说这个preparedstatement可以用于
//高效的多次执行语句,没查到statement这个类
resultset rs = null;
try
{
class.forname(classforname);//载入驱动程式类别
con=drivermanager.getconnection(servanddb);//建立数据库连接
con.setautocommit(false);//设置不自动提交
string sql="insert into article(id,author,title,time,kind,text_clob) values ("+id+","+author+","+newtitle+","+strdate+","+kind+",empty_clob())";//我的数据库中存文本的clob型字段名为:text_clob
stmt=con.preparestatement(sql);//添加一条clob字段为空的记录,
stmt.executeupdate();//执行
stmt=null;//下次使用前清空
sql="select text_clob from article where id="+id+" for update";//正是由于这条语句,id这个标识就必须得唯一!!!!
//如果数据库中已有一条记录的id与当前的id值相同,那么会查到那条记录,也就无法向新插入的记录中的clob字段进行写入!
stmt=con.preparestatement(sql);//查找刚刚添加的那条记录
rs=stmt.executequery();
oracle.sql.clob osc = null;//初始化一个空的clob对象
if (rs.next())
osc=(oracle.sql.clob)rs.getclob("text_clob");
writer w=osc.getcharacteroutputstream();//使用字符输出流
w.write(newtext);//将字符串str_text写到流中
w.flush();//输出流中数据,大概是正式向clob中写了
w.close();
con.commit();//执行
response.sendredirect("index.jsp?page=1");//回主页面
}
catch(exception e)
{out.println(e);}
finally
{
if (rs!=null)
rs.close();
if (stmt!=null)
stmt.close();
if (con!=null)
con.close();
}
%>
</body>
</html>
————————————————————————–
取的时候就相对简单了,主要就两句,看下面的代码:
————————————————————————–
<%
connection con = null;
statement stmt = null;
resultset rs = null;
long id=long.parselong(request.getparameter("id"));//将接收到的字符串转成long型
try
{
class.forname(classforname);//载入驱动程式类别
con=drivermanager.getconnection(servanddb);//建立数据库连接
stmt=con.createstatement();
string sql="select * from article where id="+id+"";
rs=stmt.executequery(sql);
if (rs.next())
{ //下2行是用于从clob类型里读数据的,转成字符串。
oracle.sql.clob osc=(oracle.sql.clob)rs.getclob("text_clob");//我的数据库中存文本的clob型字段名为:text_clob
string str_text=osc.getsubstring((long)1,(int)osc.length());//substring是截取字符串(从1截到length),如果用 osc.getstring的话出错。
out.print(str_text);
}//if
}//try
catch(exception e){}
rs.close();
stmt.close();
con.close();
%>
————————————————————————–
现在对clob类型的存取问题已经解决,但是当你操作文本字符串的时候你会发现很多问题,比如说,文本里有单引号()、标签(如<table>、<br>),还有回车和空格的问题等等,都需要你在实践中发现并解决。
下一章说说blob。