zoukankan      html  css  js  c++  java
  • VS 2005中winForm开发(C#)—图片上传到数据库与显示(sql server 2005)

    最近正在用C#做一个小的程序,其中用涉及到了照片的存取与显示,在网上搜索了很多有关的代码,但是几乎没有完整,大部分只是其中的存取或者显示代码,笔者将其整理了一下,形成了一个集照片上传到数据库、照片显示于一体的小模块。

    http://www.cnblogs.com/4E7S/archive/2011/06/03/2070278.html

    using System;

    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    using System.IO;
    using System.Data.SqlClient;


    namespace WindowsApplication1
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
            //选择按钮事件处理
            private void button1_Click(object sender, EventArgs e)
            {
                openFileDialog1.InitialDirectory = "C:\\";
                openFileDialog1.Filter = "图片文件 (*.jpg)|*.jpg";
                openFileDialog1.FilterIndex = 1;
                openFileDialog1.RestoreDirectory = true;
                openFileDialog1.Multiselect = true;
                if (openFileDialog1.ShowDialog() == DialogResult.OK)
                {
                    textBox1.Text = openFileDialog1.FileName;
                }
            }
            //上传按钮事件处理
            private void button2_Click(object sender, EventArgs e)
            {
                Save(PhotoToArray(textBox1.Text.ToString()));
            }
            //将图片信息转换成二进制信息
            private byte[] PhotoToArray(string path)
            {
                FileStream stream = new FileStream(path, FileMode.Open, FileAccess.Read);
                byte[] bufferPhoto = new byte[stream.Length];
                stream.Read(bufferPhoto, 0, Convert.ToInt32(stream.Length));
                stream.Flush();
                stream.Close();
                return bufferPhoto;
            }
            //把二进制的图片插到数据库
            private void Save(byte[] image)
            {
                string sql = "insert into Photo(photo_Info) values(@photo)";
                SqlParameter param = new SqlParameter();
                param = new SqlParameter("@photo", SqlDbType.Image);
                param.Value = image;
                SqlCommand commd = new SqlCommand(sql, DBhelper.con);
                commd.Parameters.Add(param);
                try
                {
                    DBhelper.con.Open();
                    commd.ExecuteNonQuery();
                    MessageBox.Show("您已经把图片成功的插入数据库!");
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message);
                }
                finally
                {
                    DBhelper.con.Close();
                }
            }
            //显示图片按钮事件处理
            private void button3_Click(object sender, EventArgs e)
            {
                string strSQL = "Select   [photo_Info]   From   [Photo]   Where   [photo_Id]=(@photo)";
                SqlParameter param = new SqlParameter();
                param = new SqlParameter("@photo", SqlDbType.Int);
                param.Value = comboBox1.Text.ToString();
                SqlCommand cmd = new SqlCommand(strSQL, DBhelper.con);
                cmd.Parameters.Add(param);
                DBhelper.con.Open();
                System.Data.SqlClient.SqlDataReader reader = cmd.ExecuteReader();
                try
                {
                    reader.Read();
                    MemoryStream ms = new MemoryStream((byte[])reader["photo_Info"]);
                    System.Drawing.Image image = System.Drawing.Image.FromStream(ms, true);
                    this.pictureBox1.Image = image;
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message);
                }
                finally
                {
                    DBhelper.con.Close();
                }
            }
            private void Form1_Load(object sender, EventArgs e)
            {
                // TODO: 这行代码将数据加载到表“myPhotoDataSet.Photo”中。您可以根据需要移动或移除它。
                this.photoTableAdapter.Fill(this.myPhotoDataSet.Photo);
            }
        }
    }
  • 相关阅读:
    CentOS6.3搭建Nginx代理访问MongoDB GridFS图片资源
    PHP判断变量是否存在及函数isset() 、empty()与is_null的区别
    【摘】请问make -j8 和make -j4 是什么意思?什么作用?
    关于数字、数据处理的几个PHP函数汇总
    Windows下Nginx的启动、停止等基本命令
    Git 简明教程
    PHP函数preg_replace() 正则替换所有符合条件的字符串
    如何挂载阿里云Linux服务器的“数据盘”(新购买)
    ThinkPHP模板中JS等带花括号处会被解析错误的解决办法
    移动端与PHP服务端接口通信流程设计(增强版)
  • 原文地址:https://www.cnblogs.com/swarb/p/9924321.html
Copyright © 2011-2022 走看看