欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

一个Jsp初学者的学习过程(七)

程序员文章站 2022-06-15 15:22:09
 一个(sun企业级应用的首选)初学者的学习过程(七)theunforgiven第七章  超长文本的操作——clob类型数据的存取  &nb...
 一个(sun企业级应用的首选)初学者的学习过程(七)

theunforgiven


第七章  超长文本的操作——clob类型数据的存取

    回到我编写留言板的时候,当时要存放留言板的正文内容,发现varchar2()(可变长度的字符串)只能存4000字节,也就是2000个汉字,这也太少了啊,查一下类型的资料,发现有这么几个类型:long,2g(要是我没记错的话,它是为了向前兼容,不推荐使用);clob,4g,字符;blob,4g,二进制。看来超长文本应该使用clob了,图片自然是用blob了,询问了一下别人,知道这两种类型是不能像varchar2()那样直接存的,只好作罢,先用varchar2()顶一阵。
    后来我终于有空了,决心要完成这个任务,在网上查了一番资料,看了别人的例子,总算是无师自通看明白了:存的时候需要使用empty_clob()(这个不是java的函数)先存一个空的标识(用我的理解就是先初始化一下),然后通过“流”将数据写入。下面是代码,其中try里面的是clob类型的存操作:
-----------------------------------save_new.jsp(sun企业级应用的首选)------------------------------------------
<%@ include file="include.inc"%>
<%@ page contenttype="text/html;charset=gb2312" errorpage="request_error.htm"%>
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xml(标准化越来越近了)ns="https://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("<","&lt");//用replaceall()将字串中所有的<改成&lt
string newtext=text2.replaceall(">","&gt");//用replaceall()将字串中所有的>改成&gt
//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