1. 程式人生 > >c# winform 讀取oracle中blob欄位的圖片並且顯示到pictureBox裡,儲存進庫

c# winform 讀取oracle中blob欄位的圖片並且顯示到pictureBox裡,儲存進庫

C#程式碼  收藏程式碼
  1. private void button2_Click(object sender, EventArgs e)  
  2. {  
  3.     OracleConnection conn = dbc.getConnection();//獲得conn連線  
  4.     try  
  5.     {  
  6.         conn.Open();  
  7.         OracleCommand cmd = conn.CreateCommand();  
  8.         cmd.CommandText = "SELECT zp FROM kk.kkbj WHERE xh = 2345 ";//查詢獲得圖片流  
  9.         OracleDataReader reader = cmd.ExecuteReader();//建立一個OracleDateReader物件 
      
  10.         reader.Read();  
  11.         MemoryStream ms = new MemoryStream((byte[])reader["zp"]);  
  12.         Image image = Image.FromStream(ms, true);  
  13.         reader.Close();  
  14.         conn.Close();  
  15.         pictureBox1.Image = image;  
  16.     }  
  17.     catch (Exception ee)  
  18.     {  
  19.         MessageBox.Show(ee.Message.ToString());  
  20.     }  
  21. }  


----------下邊是上傳和存入資料庫有asp.net和winform(轉)----------------------------------

本文總結如何在.Net Winform和.Net webform(asp.net)中將圖片存入sqlserver中並讀取顯示的方法 
    1,使用asp.net將圖片上傳並存入SqlServer中,然後從SqlServer中讀取並顯示出來 

    一,上傳並存入SqlServer 

    資料庫結構 
create table test 

     id identity(1,1), 
     FImage image 



    相關的儲存過程 
Create proc UpdateImage 

     @UpdateImage Image 

As 
Insert Into test(FImage) values(@UpdateImage) 
GO 

    在UpPhoto.aspx檔案中新增如下: 
C#程式碼  收藏程式碼
  1. <input id="UpPhoto" name="UpPhoto" runat="server" type="file">  
  2. <asp:Button id="btnAdd" name="btnAdd" runat="server" Text="上傳"></asp:Button>  

    然後在後置程式碼檔案UpPhoto.aspx.cs新增btnAdd按鈕的單擊事件處理程式碼: 
C#程式碼  收藏程式碼
  1. private void btnAdd_Click(object sender, System.EventArgs e)  
  2. {  
  3.         //獲得圖象並把圖象轉換為byte[]  
  4.         HttpPostedFile upPhoto=UpPhoto.PostedFile;  
  5.         int upPhotoLength=upPhoto.ContentLength;  
  6.         byte[] PhotoArray=new Byte[upPhotoLength];  
  7.         Stream PhotoStream=upPhoto.InputStream;  
  8.         PhotoStream.Read(PhotoArray,0,upPhotoLength);  
  9.         //連線資料庫  
  10.         SqlConnection conn=new SqlConnection();  
  11.         conn.ConnectionString="Data Source=localhost;Database=test;User Id=sa;Pwd=sa";  
  12.         SqlCommand cmd=new SqlCommand("UpdateImage",conn);  
  13.         cmd.CommandType=CommandType.StoredProcedure;  
  14.         cmd.Parameters.Add("@UpdateImage",SqlDbType.Image);  
  15.         cmd.Parameters["@UpdateImage"].Value=PhotoArray;  
  16.         //如果你希望不使用儲存過程來新增圖片把上面四句程式碼改為:  
  17.         //string strSql="Insert into test(FImage) values(@FImage)";  
  18.         //SqlCommand cmd=new SqlCommand(strSql,conn);  
  19.         //cmd.Parameters.Add("@FImage",SqlDbType.Image);  
  20.         //cmd.Parameters["@FImage"].Value=PhotoArray;  
  21. conn.Open();  
  22. cmd.ExecuteNonQuery();  
  23. conn.Close();  
  24. }  

    二,從SqlServer中讀取並顯示出來 

    在需要顯示圖片的地方新增如下程式碼: 
C#程式碼  收藏程式碼
  1. <asp:image id="imgPhoto" runat="server" ImageUrl="ShowPhoto.aspx"></asp:image>  

    ShowPhoto.aspx主體程式碼: 
C#程式碼  收藏程式碼
  1. private void Page_Load(object sender, System.EventArgs e)  
  2. {  
  3.      if(!Page.IsPostBack)  
  4.      {  
  5.                 SqlConnection conn=new SqlConnection()  
  6.                 conn.ConnectionString="Data Source=localhost;Database=test;User Id=sa;Pwd=sa";  
  7.                 string strSql="select * from test where id=2";//這裡假設獲取id為2的圖片  
  8.                 SqlCommand cmd=new SqlCommand()  
  9.                 reader.Read();  
  10.                 Response.ContentType="application/octet-stream";  
  11.                 Response.BinaryWrite((Byte[])reader["FImage"]);  
  12.                 Response.End();  
  13.                 reader.Close();  
  14.      }  
  15. }  


    3,在winform中將圖片存入sqlserver,並從sqlserver中讀取並顯示在picturebox中 

    1,存入sqlserver 

    資料庫結構和使用的儲存過過程,同上面的一樣 

    1.1,在窗體中加一個OpenFileDialog控制元件,命名為ofdSelectPic 

    1.2,在窗體上新增一個開啟檔案按鈕,新增如下單擊事件程式碼: 
C#程式碼  收藏程式碼
  1. Stream ms;  
  2. byte[] picbyte;  
  3. //ofdSelectPic.ShowDialog();  
  4. if (ofdSelectPic.ShowDialog()==DialogResult.OK)  
  5. {  
  6.    if ((ms=ofdSelectPic.OpenFile())!=null)  
  7.    {  
  8.     //MessageBox.Show("ok");  
  9.     picbyte=new byte[ms.Length];  
  10.     ms.Position=0;  
  11.     ms.Read(picbyte,0,Convert.ToInt32(ms.Length));  
  12.     //MessageBox.Show("讀取完畢!");  
  13.     //連線資料庫  
  14.     SqlConnection conn=new SqlConnection();  
  15.     conn.ConnectionString="Data Source=localhost;Database=test;User Id=sa;Pwd=sa";  
  16.     SqlCommand cmd=new SqlCommand("UpdateImage",conn);  
  17.     cmd.CommandType=CommandType.StoredProcedure;  
  18.     cmd.Parameters.Add("@UpdateImage",SqlDbType.Image);  
  19.     cmd.Parameters["@UpdateImage"].Value=picbyte;  
  20.     conn.Open();  
  21.     cmd.ExecuteNonQuery();  
  22.     conn.Close();  
  23.     ms.Close();  
  24.     }  
  25.    }  

    2,讀取並顯示在picturebox中 

    2.1 新增一個picturebox,名為ptbShow 

    2.2 新增一個按鈕,新增如下響應事件: 
C#程式碼  收藏程式碼
  1. SqlConnection conn=new SqlConnection();  
  2. conn.ConnectionString="Data Source=localhost;Database=test;User Id=sa;Pwd=sa";  
  3. string strSql="select FImage from test where id=1";  
  4. SqlCommand cmd=new SqlCommand(strSql,conn);  
  5. conn.Open();  
  6. SqlDataReader reader=cmd.ExecuteReader();  
  7.         reader.Read();  
  8. MemoryStream ms=new MemoryStream((byte[])reader["FImage"]);  
  9. Image image=Image.FromStream(ms,true);  
  10.         reader.Close();  
  11.         conn.Close();  
  12. ptbShow.Image=image;  


黑色頭髮:http://heisetoufa.iteye.com