當前位置:首頁 » 文件傳輸 » 圖片上傳到資料庫
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

圖片上傳到資料庫

發布時間: 2022-02-08 12:48:36

1. 圖片如何存入資料庫

通常對用戶上傳的圖片需要保存到資料庫中。解決方法一般有兩種:一種是將圖片保存的路徑存儲到資料庫;另一種是將圖片以二進制數據流的形式直接寫入資料庫欄位中。以下為具體方法:
一、保存圖片的上傳路徑到資料庫:
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=stumanage;User ID=sa;Password=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;
採用倆種方式可以根據實際需求靈活選擇。

2. 怎麼將圖片上傳到資料庫中,

1.
可以將圖片上傳到伺服器,以二進制數據存放到資料庫
2.
可以將圖片以文件方式上傳到伺服器,存放到指定目錄
---------
使用圖片上傳,可以採用圖片上傳組件(asp上傳組件,很多的,搜一下),也可以使用無組件上傳

3. 上傳圖片到SQL資料庫

給LZ的小小的建議,一般都是在資料庫里保存IMG的圖片路徑,然後在jsp頁面上再從資料庫讀取圖片的路徑,圖片就放工程里就行了。

4. 圖片如何存儲在資料庫當中

頭條的文件就存在資料庫,可能他們取出來就是二進制吧,播放器可以解碼

5. 如何將圖片上傳到資料庫中,並讀出來

你想多了 用不到二進制流
你在suss.php頁面中獲取 表單傳過來的pic的值就行了($pic=$_POST[pic];)
說白了就是把圖片的地址入庫 之後在你想顯示的地方用sql語句查出來,結果賦給img標簽就行了
就像這樣<img src="資料庫裡面圖片的地址">

6. 上傳圖片路徑到資料庫

使用jquery獲取選中圖片及它的src保存在HiddenFiled控制項,保存時候獲取HiddenFiled的值,可以存儲全路徑 比如:http://www..com/images/111.jpg
也可以保存部分路徑 如:/images/111.jpg 但你顯示的時候需要能讀取到

7. 如何把圖片上傳到淘寶資料庫呢

巴比豆,淘寶官方的相冊。其它的都不好使。我以前用網路的,後來才發現圖片只有我能看到,其它人都看不到

8. 圖片如何存入資料庫

1、新建一個資料庫,資料庫名為Image,表名為image。並為表添加ID,tupian兩個列。