
<%@ page language="java" contentType="text/htmlcharset=GB2312" pageEncoding="GB2312"%>
<%@ page language="java" import="java.io.*"%>
<%@ page language="java" import="com.jspsmart.upload.*"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=GB2312">
<title>文件上传Bean</title>
</head>
<body>
<jsp:useBean id="mySmartUpload" scope="page" class="com.jspsmart.upload.SmartUpload" />
<FORM METHOD="POST" ACTION="Ex7_7.jsp" ENCTYPE="multipart/form-data">
<INPUT TYPE="FILE" NAME="FILE1" SIZE="50"><BR>
<INPUT TYPE="FILE" NAME="FILE2" SIZE="50"><BR>
<INPUT TYPE="FILE" NAME="FILE3" SIZE="50"><BR>
<INPUT TYPE="FILE" NAME="FILE4" SIZE="50"><BR>
<INPUT TYPE="SUBMIT" VALUE="Upload">
</FORM>
<%
//上传文件计数
int count=0
//初始化,传入pageContext内置变量
mySmartUpload.initialize(pageContext)
//允许上传的文件类型
mySmartUpload.setAllowedFilesList("htm,html,txt,jar,")
//或者设定拒绝上传的文件类型
// mySmartUpload.setDeniedFilesList("exe,bat,jsp")
// 拒绝的物理路径
// mySmartUpload.setDenyPhysicalPath(true)
// 设置文件最大为 50000 bytes
mySmartUpload.setMaxFileSize(50000)
// 允许一次最多上载文件大小不超过 200000 bytes
// mySmartUpload.setTotalMaxFileSize(200000)
try {
// 上传 *** 作
mySmartUpload.upload()
//以原文件名存储在web服务器虚拟路径下
//返回上传的文件数
count = mySmartUpload.save("/Upload", mySmartUpload.SAVE_VIRTUAL)
} catch (Exception e){
//输出意外信息
out.println("<b>Wrong selection : </b>" + e.toString())
}
// 显示文件上载数
out.println(count + " file(s) uploaded.")
%>
</body>
</html>
通常对用户上传的图片需要保存到数据库中。解决方法一般有两种:一种是将图片保存的路径存储到数据库;另一种是将图片以二进制数据流的形式直接写入数据库字段中。以下为具体方法:一、保存图片的上传路径到数据库:
string uppath=""//用于保存图片上传路径
//获取上传图片的文件名
string fileFullname = this.FileUpload1.FileName
//获取图片上传的时间,以时间作为图片的名字可以防止图片重名
string dataName = DateTime.Now.ToString("yyyyMMddhhmmss")
//获取图片的文件名(不含扩展名)
string fileName = fileFullname.Substring(fileFullname.LastIndexOf("\\") + 1)
//获取图片扩展名
string type = fileFullname.Substring(fileFullname.LastIndexOf(".") + 1)
//判断是否为要求的格式
if (type == "bmp" || type == "jpg" || type == "jpeg" || type == "gif" || type == "JPG" || type == "JPEG" || type == "BMP" || type == "GIF")
{
//将图片上传到指定路径的文件夹
this.FileUpload1.SaveAs(Server.MapPath("~/upload") + "\\" + dataName + "." + type)
//将路径保存到变量,将该变量的值保存到数据库相应字段即可
uppath = "~/upload/" + dataName + "." + type
}
二、将图片以二进制数据流直接保存到数据库:
引用如下命名空间:
using System.Drawing
using System.IO
using System.Data.SqlClient
设计数据库时,表中相应的字段类型为iamge
保存:
//图片路径
string strPath = this.FileUpload1.PostedFile.FileName.ToString ()
//读取图片
FileStream fs = new System.IO.FileStream(strPath, FileMode.Open, FileAccess.Read)
BinaryReader br = new BinaryReader(fs)
byte[] photo = br.ReadBytes((int)fs.Length)
br.Close()
fs.Close()
//存入
SqlConnection myConn = new SqlConnection("Data Source=.Initial Catalog=stumanageUser ID=saPassword=123")
string strComm = " INSERT INTO stuInfo(stuid,stuimage) VALUES(107,@photoBinary )"// *** 作数据库语句根据需要修改
SqlCommand myComm = new SqlCommand(strComm, myConn)
myComm.Parameters.Add("@photoBinary", SqlDbType.Binary, photo.Length)
myComm.Parameters["@photoBinary"].Value = photo
myConn.Open()
if (myComm.ExecuteNonQuery() >0)
{
this.Label1.Text = "ok"
}
myConn.Close()
读取:
...连接数据库字符串省略
mycon.Open()
SqlCommand command = new
SqlCommand("select stuimage from stuInfo where stuid=107", mycon)//查询语句根据需要修改
byte[] image = (byte[])command.ExecuteScalar ()
//指定从数据库读取出来的图片的保存路径及名字
string strPath = "~/Upload/zhangsan.JPG"
string strPhotoPath = Server.MapPath(strPath)
//按上面的路径与名字保存图片文件
BinaryWriter bw = new BinaryWriter(File.Open(strPhotoPath,FileMode.OpenOrCreate))
bw.Write(image)
bw.Close()
//显示图片
this.Image1.ImageUrl = strPath
采用俩种方式可以根据实际需求灵活选择。
关于上传文件:
推荐使用插件Uploadify!
使用方法:http://www.uploadify.com/documentation/
下载地址:http://www.uploadify.com/download/
关于多图上传:
在客户端定义一个js变量,用于缓存每次异步上传图片路径
最后提交表达数据的时候就把这些路径集合保存到数据库即可!
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)