一個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">