新手求救!如何将图片写入数据库中并读出来显示?在线等。

解决方案 »

  1.   

    http://dotnet.aspx.cc/ShowDetail.aspx?id=2A5DD7C6-A45A-48AB-A2E8-342A29F17506
      

  2.   

    写入数据库//上传
    if(myFile.ContentLength != 0)
    {
      try
      {
        System.Web.HttpPostedFile myFile = this.Request.Files[0];
    //        string tmpFileName = myFile.FileName;
    //        string myFileName = tmpFileName.Substring(tmpFileName.LastIndexOf("."));
    //        string myFileMimeType = myFile.ContentType();
    //        myFile.SaveAs(this.Server.MapPath("../" + myFileName));    //读取到数组里面
        System.IO.Stream mystream = myFile.InputStream;
        byte[] Buffer = new byte[myFile.ContentLength];
        mystream.Read(Buffer,0,myFile.ContentLength);    //打开数据库
        OracleConnection cn = new OracleConnection(ConfigurationSettings.AppSettings["sysDSN"]);
        cn.Open();    //用参数方式写入数据库
        OracleCommand myComm = cn.CreateCommand();
        string sql = "insert into tmp(tmp_id,tmp_blob) values(tmp_seq.nextval,:tmp_blob)";
        myComm.CommandText = sql;
        myComm.Parameters.Add(":tmp_blob",OracleType.Blob,Buffer.Length).Value = Buffer;
        myComm.ExecuteNonQuery();
      }
      catch
      {
        //此处可加错误显示
      }
      finally
      {        
        cn.Close();
      }
    }
    在页面中,放一个Image控件,在后台指定它的链接地址如下:
    ----------------------------------------------------------------------
    //为方便,写一个固定ID号tmp_id=103
    this.Image1.ImageUrl = "showimg.aspx?tmp_id=103" ;
    下面是显示图片的页面showimg.aspx后台代码,该页面不需要放任何东西.
    --------------------------------------------------------------------
    //创建数据库连接
    OracleConnection myConnection = new OracleConnection(ConfigurationSettings.AppSettings["sysDSN"]);
    myConnection.Open();//打开数据库
    OracleCommand myCommand = myConnection.CreateCommand();
    string sql = "select tmp_blob from tmp where tmp_id = 103";
    myCommand.CommandText = sql;
    OracleDataReader myRead = myCommand.ExecuteReader();//开始读取
    myRead.Read();
    //这个方法更直接
    Byte[] Buffer = (Byte[])myRead[0];
    //OracleLob myLob = myRead.GetOracleLob(0);
    //长度是long,转为int32
    //int myLength = Convert.ToInt32(myLob.Length);  
    //Byte[] Buffer = new byte[myLength];      
    //myLob.Read(Buffer,0,myLength);//输出
    this.Response.Clear();
    //输出mime类型,根据上传的文件取到的mimetype,是什么我忘记了,自己写上,不过不写也没有关系.
    this.Response.ContentType = "";
    this.Response.BinaryWrite(Buffer);
    this.Response.End(); 
      

  3.   

    读出来的时候用Response.BinaryWrite方法能很好的控制图片属性吗?比如说大小、位置什么的。
      

  4.   

    读出来的时候用Response.BinaryWrite方法读取 
    然后 把这个图片作为 img 的元素 
    当然控制img的大小 和位置
     就改变了 显示的图片的大小 和位置