A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

杜鹏

中级黑马

  • 黑马币:0

  • 帖子:7

  • 精华:0

现需要实现一个功能:读取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.         }
复制代码

评分

参与人数 1技术分 +1 收起 理由
杞文明 + 1

查看全部评分

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马