Chinaunix首页 | 论坛 | 博客
  • 博客访问: 303817
  • 博文数量: 77
  • 博客积分: 394
  • 博客等级: 一等列兵
  • 技术积分: 562
  • 用 户 组: 普通用户
  • 注册时间: 2012-03-19 16:15
文章分类
文章存档

2015年(17)

2014年(1)

2012年(59)

分类: C#/.net

2015-04-23 11:38:09

       byte[] fileData = imagemodel.LSCIMAGE;
              //  System.IO.MemoryStream ms = new System.IO.MemoryStream(fileData);
                string imgName = imagemodel.CHECKNO + ".jpg";
                imgvPath = "/Imgcahe/" + imgName;
                //虚拟路径转换成物理路径
                string imgPath = MapPath(imgvPath);
                //指定路径确定初始化文件
                FileStream fs = new FileStream(imgPath, FileMode.Create);
                BinaryWriter bw = new BinaryWriter(fs);
                bw.Write(fileData);
                bw.Close();
                fs.Close();



 ///
        /// 读取图片的方法
        ///

        ///
        //private string getImageOracle()
        //{
        //    string imgvPath = _nopicture;
        //    try
        //    {
        //        LscImageBLL lscimage = new LscImageBLL();
        //        LscImageInfo imagemodel = lscimage.GetModelLscImage(_key);
        //        if (imagemodel != null)
        //        {
        //            byte[] fileData = imagemodel.LSCIMAGE;
        //            System.IO.MemoryStream ms = new System.IO.MemoryStream(fileData);
        //            string imgName = imagemodel.CHECKNO + ".jpg";
        //            string imgfile = MapPath("/Imgcahe/");
        //            if (!Directory.Exists(imgfile))
        //            {
        //                Directory.CreateDirectory(imgfile);
        //            }
        //            imgvPath = "/Imgcahe/" + imgName;
        //            string imgPath = MapPath(imgvPath);
        //            FileStream fs = new FileStream(imgPath, FileMode.Create);
        //            BinaryWriter bw = new BinaryWriter(fs);
        //            bw.Write(fileData);
        //            bw.Close();
        //            fs.Close();


        //        }
        //        else
        //        {
        //            imgvPath = _nopicture;
        //        }
        //    }
        //    catch (Exception ex) 
        //    {
        //        LogError.LogToFile("低速详情图片读取:"+ex.Message);
        //    }
        //    return imgvPath;
        //}

阅读(2151) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~