黑马程序员技术交流社区

标题: C#中如何读取excel中的图片并保存到数据库中 [打印本页]

作者: 杜鹏    时间: 2013-6-25 16:53
标题: C#中如何读取excel中的图片并保存到数据库中
现需要实现一个功能:读取excel中的图片并将它保存到数据库中(web页面中),从网上看了几种方法,但试了总是不成功,一种方法的代码如下,求解。。有更好的方法么?谢谢
  1. private int StartRow = 2;    //读的起始行
  2.         private int ImgCount = 0;
  3.         protected void btnImport_Click(object sender, EventArgs e)
  4.         {
  5.             try
  6.             {
  7.                 string path = "C:\\Users\\wang\\Desktop\\user.xlsx";
  8.                 Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.Application();//引用Excel对象
  9.                 Microsoft.Office.Interop.Excel.Workbook workbook = excel.Workbooks.Add(path);
  10.                 excel.UserControl = true;
  11.                 System.Text.StringBuilder sb = new System.Text.StringBuilder();
  12.                 excel.Visible = false;
  13.                 for (int i = 0; i < workbook.Worksheets.Count; i++)//循环取所有的Sheet.
  14.                 {
  15.                     Microsoft.Office.Interop.Excel.Worksheet sheet = workbook.Worksheets.get_Item(i + 1) as Microsoft.Office.Interop.Excel.Worksheet;//从1开始.
  16.                     for (int row = StartRow; row <= sheet.UsedRange.Rows.Count; row++)
  17.                     {
  18.                         string imgName = string.Empty;
  19.                         //取单元格值;
  20.                         for (int col = 1; col <= sheet.UsedRange.Columns.Count; col++)
  21.                         {
  22.                             Microsoft.Office.Interop.Excel.Range range = sheet.Cells[row, col] as Microsoft.Office.Interop.Excel.Range;
  23.                             sb.Append("," + col.ToString() + ":" + range.Text);
  24.                             if(col==1)
  25.                                 imgName = range.Text.ToString();//得到第一列的名称,作为图片名称
  26.                         }
  27.                         sb.Append(System.Environment.NewLine);
  28.                         //取存图片;
  29.                         if (sheet.Shapes.Count > row - StartRow)
  30.                         {
  31.                             Microsoft.Office.Interop.Excel.Shape s = sheet.Shapes.Item(row - StartRow + 1) as Microsoft.Office.Interop.Excel.Shape;
  32.                             s.CopyPicture(Appearance.Button, Microsoft.Office.Interop.Excel.XlCopyPictureFormat.xlBitmap); //COPY到内存。
  33.                             IDataObject iData = Clipboard.GetDataObject();  //这里为什么总是为null?
  34.                             if (iData.GetDataPresent(DataFormats.Bitmap))
  35.                             {
  36.                                 
  37.                                 ImgCount += 1; //保存的图片数加1
  38.                             }
  39.                             else
  40.                             {
  41.                               
  42.                             }
  43.                         }
  44.                     }
  45.                 }
  46.             }
  47.             catch (Exception)
  48.             {
  49.                
  50.                 throw;
  51.             }
  52.         }
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2