導航:首頁 > 數據處理 > 資料庫里如何放圖片的路徑

資料庫里如何放圖片的路徑

發布時間:2023-08-29 01:46:09

1. 資料庫中怎麼存放圖片

兩種,一種是將圖片轉化成二進制數據流存入資料庫中。一種是保存圖片的路徑,然後前台讀取路徑去調用圖片。相關的代碼網路一下應該會有,第二種方法實現上比較簡單,就是存儲路徑,然後根據路徑讀取對應的圖片顯示出來。第一種就比較麻煩,要先把圖片轉化成二進制數據,讀取時就是從資料庫讀取對應數據再轉化成圖片顯示出來。

2. 如何將圖片儲存在MySQL資料庫里

解決方法一般有兩種:

1、將圖片保存的路徑存儲到資料庫;

2、將圖片以二進制數據流的形式直接寫入資料庫欄位中。

以下為具體方法:

一、保存圖片的上傳路徑到資料庫:
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;
採用這兩種方式可以根據實際需求靈活選擇。

閱讀全文

與資料庫里如何放圖片的路徑相關的資料

熱點內容
小程序的appkey是什麼 瀏覽:355
安卓機如何查看黑名單攔截信息 瀏覽:806
中財總代理有哪些 瀏覽:264
新產品設計轉換怎麼做 瀏覽:537
廊坊市華為華北數據中心在哪裡 瀏覽:35
啟動台從程序塢刪除後怎麼恢復 瀏覽:738
問題產品如何查詢 瀏覽:504
金器氣缸代理商有哪些 瀏覽:713
代理美團外賣商家需要哪些條件 瀏覽:763
海德漢系統如何程序跳躍 瀏覽:111
想喜歡的人了男生怎麼發信息 瀏覽:228
湖北省醫用耗材交易系統怎麼用采購配送系統 瀏覽:752
報廢二手摩托車市場在哪裡 瀏覽:497
普通車床有什麼技術 瀏覽:274
銷售如何介紹產品開頭 瀏覽:994
巴克萊產品怎麼樣 瀏覽:594
如何根據產品風格寫詳情頁面文案 瀏覽:853
視頻拍完怎麼加小程序 瀏覽:410
流沙都有什麼技術學院 瀏覽:860
去除污物的產品有哪些 瀏覽:419