一个jsp初学者的学习过程(八)
theunforgiven
第八章 图片文件的操作——blob类型数据的存取和使用第一个servlet
关于这部分内容,我在网上找到一些资料,最后按照我的需求,经过改编得到了下面的代码:
——————————upphoto.htm————————————
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<title>无标题文档</title>
head>
<body>
上传图片:
<form name="form1" method="post" action="upphoto.jsp">
<input name="id" type="text">
(输入一个整数作为该图片的id)<br>
<input size="50" name="file" type="file">
<br>
<input type="submit" name="submit" value="提交">
</form>
<p> </p>
<p> </p>
显示图片:<br>
<br>
<form name="form2" method="post" action="showphoto.jsp">
<input type="text" name="vid">
(输入该图片的id)<br>
<input type="submit" name="submit2" value="提交">
</form>
</body>
</html>
—————————————————————————
upphoto.htm包括两个<form>,form1用于选择要存于数据库的图片;form2用于显示一张数据库里的图片。
—————————–upphoto.jsp———————————-
<%@ include file="include.inc"%>
<%@ page contenttype="text/html;charset=gb2312"%>
<!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=gb2312">
<title>无标题文档</title>
</head>
<body>
<%
int id=integer.parseint(request.getparameter("id"));
request.setcharacterencoding("gb2312");
string f=request.getparameter("file");//得到路径,如:c:\d\e.jpg
string fpath=f.replacefirst("\\\\","\\\\\\\\");//把一个\变成两个\,即路径改成:c:\\d\e.jpg
connection con = null;
preparedstatement pstmt = null;
resultset rs = null;
try
{
class.forname(classforname);//载入驱动程式类别
con=drivermanager.getconnection(servanddb);//建立数据库连接
con.setautocommit(false);
string sql="insert into blb(id,blob) values("+id+",empty_blob())";//数据库里那个表名叫blb,字段的名就叫blob
pstmt=con.preparestatement(sql);//添加一条blob字段为空的记录,
pstmt.executeupdate();
pstmt=null;
sql="select * from blb where id="+id+" for update";
pstmt=con.preparestatement(sql);//查找刚刚添加的那条记录
rs=pstmt.executequery();
if (rs.next())
{
oracle.sql.blob osb = (oracle.sql.blob) rs.getblob("blob");
//到数据库的输出流
outputstream outstream = osb.getbinaryoutputstream();
//这里用一个文件模拟输入流
file file = new file(fpath);
inputstream instream = new fileinputstream(file);
//将输入流写到输出流
byte[] b = new byte[osb.getbuffersize()];
int len = 0;
while ( (len = instream.read(b)) != -1)
{
outstream.write(b, 0, len);
}
//依次关闭(注意顺序)
instream.close();
outstream.flush();
outstream.close();
con.commit();
rs.close();
pstmt.close();
con.close();
out.print("<script>");
out.print("alert(操作成功!);");
out.print("window.location.href=upphoto.htm;");
out.print("</script>");
}//if
}//try
catch(exception e)
{out.print(e);}
%>
</body>
</html>
—————————————————————————-
upphoto.jsp对图片进行存入数据库操作。注意需要将得到的文件的路径改变一下格式:c:\d\e.jpg改成c:\\d\e.jpg
——————————showphoto.jsp———————————
<%@ page contenttype="text/html;charset=gb2312"%>
<html>
<head>
<title>显示图片</title>
</head>
<body>
<%
string id=request.getparameter("vid");
%>
<table>
<tr>
<td colspan="3"> <img border="1" src="http://ringz/photo?id=<%=id%>"></td>
</tr>
</table>
</body>
</html>
—————————————————————————
showphoto.jsp的这句是关键:src="http://ringz/photo?id=<%=id%>",它说明调用了一个servlet,这个servlet的名字叫photo,而且需要给它传一个值(id)。下面看这个servlet的代码:
—————————photoservlet.java——————————
package ringz.servlet;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
import java.lang.*;
import java.sql.*;
public class photoservlet extends httpservlet//和javabean一样是“类”,所以类名同样要和文件名一致
{
private string classforname = "oracle.jdbc.driver.oracledriver";
private string servanddb = "jdbc:oracle:thin:name/password@ringz:1521:rock";
connection con = null;
preparedstatement psmt = null;
resultset rs = null;
public void doget(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception
{
int id = integer.parseint(request.getparameter("id"));
try
{
class.forname(classforname);
con=drivermanager.getconnection(servanddb);
con.setautocommit(false);
string sql = "select * from clb where id="+id;
psmt = con.preparestatement(sql);
rs = psmt.executequery();
if (rs.next())
{
blob bb = rs.getblob("blob");
inputstream instream = bb.getbinarystream();
response.setcontenttype("image/*");
outputstream outstream = response.getoutputstream();
byte[] bytes = new byte[1024];
int i=0;
while ( (i = instream.read(bytes)) != -1)
{
outstream.write(bytes, 0, i);
}
instream.close();
outstream.close();
outstream = null;
con.commit();
rs.close();
psmt.close();
con.close();
}//if
}//try
catch (exception ex)
{}
}//doget
}
————————————————————————–
关于servlet的知识请详细参阅有关参考书。下面说编译的事情:servlet像javabean一样需要编译成.class文件,编译方法也和javabean一样。但是我在编译的时候发现出了错误,错误提示如下:
package javax.servlet does not exist
import javax.servlet.*;
^
我分析是少了什么东西造成的,于是在网上查资料,最后终于得出原因:环境变量里没有指出servlet相关的包的位置。解决办法:将原来的环境变量里的classpath添加一条:d:\j2sdk1.4.2_07\lib\servlet.jar;
以我的为例,这是原来的:
classpath——.;d:\j2sdk1.4.2_07\lib\tools.jar;d:\j2sdk1.4.2_07\lib\dt.jar;
这是修改后的:
classpath——.;d:\j2sdk1.4.2_07\lib\tools.jar;d:\j2sdk1.4.2_07\lib\dt.jar;d:\j2sdk1.4.2_07\lib\servlet.jar;
现在顺利的编译出了.class文件,但是同样有问题:文件放在哪?和使用javabean时一样,放在根目录e:\myjsp下的web-inf\classes里,并且可以使用自己的包,比如我的在:e:\myjsp\web-inf\classes\ringz\servlet下。接下来还有一个工作:给这个servlet进行“注册”:在web-inf下建一个web.xml文件,内容大致如下:
———————————-web.xml—————————————
<?xml version="1.0" encoding="iso-8859-1"?>
<!doctype web-app
public "-//sun microsystems, inc.//dtd web application 2.3//en"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<display-name>ringzs station</display-name>
<description>
ringzs jsp
</description>
<servlet>
<servlet-name>photoservlet</servlet-name>
<display-name>servlet</display-name>
<servlet-class>ringz.servlet.photoservlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>photoservlet</servlet-name>
<url-pattern>/photo</url-pattern>
</servlet-mapping>
</web-app>
—————————————————————————
其中最重要的是<servlet-name>、<servlet-class>和<url-pattern>,如果你有其他的servlet也需要在这里“注册”一下。关于servlet的配置还有很多其他的内容,比如初始化参数、优先级、映射等等,请学习其他专业资料。顺便说一下:你可以到d:\tomcat 5.0\conf里看看那里那个web.xml文件,我最开始的时候曾经把它复制到我的web-inf下,然后在里面添加了关于photoservlet的内容,结果tomcat服务出错,我猜想是里边的一些内容发生的冲突,但具体是哪些我不清楚,也没有有研究。
现在,配置完毕,可以使用了。
结语
对实例的学习进行到现在,我已经对jsp和java有了初步的了解了,我知道是时候了——该回头找些书看看理论部分了,否则我永远也成不了一个程序员。
学习还要继续,本文就先到这里,假如大家认为我这个东西还有那么一点用处的话,我会把以后的阶段相继写出来;如果没有必要,那就算了吧:)。
请大家指教,扔玉——为了本民族的软件事业。