123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- using NPOI.SS.UserModel;
- using NPOI.HSSF.UserModel;//导出xls格式用HSSF
- using NPOI.XSSF.UserModel;//导出xlsx格式用XSSF
- using System.IO;
- using System.Runtime.InteropServices;
- using System.Diagnostics;
- using NPOI.SS.Util;
- namespace ExportToExcel
- {
- public class ExportDgvToExcel
- {
- #region NPOI DataGridView 导出 EXCEL
- /// <summary>
- /// NPOI DataGridView 导出 EXCEL
- /// 03版Excel-xls最大行数是65536行,最大列数是256列
- /// 07版Excel-xlsx最大行数是1048576行,最大列数是16384列
- /// </summary>
- /// <param name="imagePath">图片路径</param>
- /// <param name="dgv">DataGridView</param>
- /// <param name="fontname">字体名称</param>
- /// <param name="fontsize">字体大小</param>
- public void ExportExcel(string imagePath, DataGridView dgv, string fontname, short fontsize)
- {
- IWorkbook workbook;
- ISheet sheet;
- Stopwatch sw = null;
- //判断datagridview中内容是否为空
- if (dgv.Rows.Count == 0)
- {
- MessageBox.Show("DataGridView中内容为空,请先导入数据!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
- return;
- }
- //保存文件
- string saveFileName = "";
- SaveFileDialog saveFileDialog = new SaveFileDialog();
- saveFileDialog.DefaultExt = "xls";
- saveFileDialog.Filter = "Excel文件(*.xls)|*.xls|Excel文件(*.xlsx)|*.xlsx";
- saveFileDialog.RestoreDirectory = true;
- saveFileDialog.Title = "Excel文件保存路径";
- MemoryStream ms = new MemoryStream(); //MemoryStream
- if (saveFileDialog.ShowDialog() == DialogResult.OK)
- {
- //**程序开始计时**//
- sw = new Stopwatch();
- sw.Start();
- saveFileName = saveFileDialog.FileName;
- //检测文件是否被占用
- if (!CheckFiles(saveFileName))
- {
- MessageBox.Show("文件被占用,请关闭文件" + saveFileName);
- workbook = null;
- ms.Close();
- ms.Dispose();
- return;
- }
- }
- else
- {
- workbook = null;
- ms.Close();
- ms.Dispose();
- }
- //*** 根据扩展名xls和xlsx来创建对象
- string fileExt = Path.GetExtension(saveFileName).ToLower();
- if (fileExt == ".xlsx")
- {
- workbook = new XSSFWorkbook();
- }
- else if (fileExt == ".xls")
- {
- workbook = new HSSFWorkbook();
- }
- else
- {
- workbook = null;
- }
- //***
- //创建Sheet
- if (workbook != null)
- {
- sheet = workbook.CreateSheet("二次采集颗粒");//Sheet的名称
- }
- else
- {
- return;
- }
- //设置单元格样式
- ICellStyle cellStyle = workbook.CreateCellStyle();
- //水平居中对齐和垂直居中对齐
- cellStyle.Alignment = NPOI.SS.UserModel.HorizontalAlignment.Center;
- cellStyle.VerticalAlignment = NPOI.SS.UserModel.VerticalAlignment.Center;
- //设置字体
- IFont font = workbook.CreateFont();
- font.FontName = fontname;//字体名称
- font.FontHeightInPoints = fontsize;//字号
- font.Color = NPOI.HSSF.Util.HSSFColor.Black.Index;//字体颜色
- cellStyle.SetFont(font);
- //添加列名
- IRow headRow = sheet.CreateRow(0);
- for (int i = 0; i < dgv.Columns.Count; i++)
- {
- //隐藏行列不导出
- if (dgv.Columns[i].Visible == true)
- {
- headRow.CreateCell(i).SetCellValue(dgv.Columns[i].HeaderText);
- headRow.GetCell(i).CellStyle = cellStyle;
- }
- if (i == 4)
- {
- headRow.CreateCell(i).SetCellValue("图片");
- headRow.GetCell(i).CellStyle = cellStyle;
- }
- if (i == 6)
- {
- headRow.CreateCell(i).SetCellValue("谱图");
- headRow.GetCell(i).CellStyle = cellStyle;
- }
- }
- //根据类型写入内容
- for (int rowNum = 0; rowNum < dgv.Rows.Count; rowNum++)
- {
- ///跳过第一行,第一行为列名
- IRow dataRow = sheet.CreateRow(rowNum + 1);
- for (int columnNum = 0; columnNum < dgv.Columns.Count; columnNum++)
- {
- int columnWidth = sheet.GetColumnWidth(columnNum) / 256; //列宽
- //隐藏行列不导出
- if (dgv.Rows[rowNum].Visible == true && dgv.Columns[columnNum].Visible == true)
- {
- //防止行列超出Excel限制
- if (fileExt == ".xls")
- {
- //03版Excel最大行数是65536行,最大列数是256列
- if (rowNum > 65536)
- {
- MessageBox.Show("行数超过Excel限制!");
- return;
- }
- if (columnNum > 256)
- {
- MessageBox.Show("列数超过Excel限制!");
- return;
- }
- }
- else if (fileExt == ".xlsx")
- {
- //07版Excel最大行数是1048576行,最大列数是16384列
- if (rowNum > 1048576)
- {
- MessageBox.Show("行数超过Excel限制!");
- return;
- }
- if (columnNum > 16384)
- {
- MessageBox.Show("列数超过Excel限制!");
- return;
- }
- }
- ICell cell = dataRow.CreateCell(columnNum);
- if (dgv.Rows[rowNum].Cells[columnNum].Value == null)
- {
- cell.SetCellType(CellType.Blank);
- }
- else
- {
- if (dgv.Rows[rowNum].Cells[columnNum].ValueType.FullName.Contains("System.Int32"))
- {
- cell.SetCellValue(Convert.ToInt32(dgv.Rows[rowNum].Cells[columnNum].Value));
- }
- else if (dgv.Rows[rowNum].Cells[columnNum].ValueType.FullName.Contains("System.String"))
- {
- cell.SetCellValue(dgv.Rows[rowNum].Cells[columnNum].Value.ToString());
- }
- else if (dgv.Rows[rowNum].Cells[columnNum].ValueType.FullName.Contains("System.Single"))
- {
- cell.SetCellValue(Convert.ToSingle(dgv.Rows[rowNum].Cells[columnNum].Value));
- }
- else if (dgv.Rows[rowNum].Cells[columnNum].ValueType.FullName.Contains("System.Double"))
- {
- cell.SetCellValue(Convert.ToDouble(dgv.Rows[rowNum].Cells[columnNum].Value));
- }
- else if (dgv.Rows[rowNum].Cells[columnNum].ValueType.FullName.Contains("System.Decimal"))
- {
- cell.SetCellValue(Convert.ToDouble(dgv.Rows[rowNum].Cells[columnNum].Value));
- }
- else if (dgv.Rows[rowNum].Cells[columnNum].ValueType.FullName.Contains("System.DateTime"))
- {
- cell.SetCellValue(Convert.ToDateTime(dgv.Rows[rowNum].Cells[columnNum].Value).ToString("yyyy-MM-dd"));
- }
- else if (dgv.Rows[rowNum].Cells[columnNum].ValueType.FullName.Contains("System.DBNull"))
- {
- cell.SetCellValue("");
- }
- else
- {
- cell.SetCellValue(dgv.Rows[rowNum].Cells[columnNum].Value.ToString());
- }
- }
- //设置列宽
- IRow currentRow;
- if (sheet.GetRow(rowNum) == null)
- {
- currentRow = sheet.CreateRow(rowNum);
- }
- else
- {
- currentRow = sheet.GetRow(rowNum);
- }
- if (currentRow.GetCell(columnNum) != null)
- {
- ICell currentCell = currentRow.GetCell(columnNum);
- int length = Encoding.Default.GetBytes(currentCell.ToString()).Length;
- if (columnWidth < length)
- {
- columnWidth = length + 10; //设置列宽数值
- }
- }
- sheet.SetColumnWidth(columnNum, columnWidth * 256);
- //单元格样式
- dataRow.GetCell(columnNum).CellStyle = cellStyle;
- }
- }
- }
- //插入图片操作
- for (int i = 0; i < dgv.RowCount + 1; i++)
- {
- CellRangeAddress region = new CellRangeAddress(i, i, 1, 2);
- sheet.AddMergedRegion(region);
- region = new CellRangeAddress(i, i, 4, 5);
- sheet.AddMergedRegion(region);
- region = new CellRangeAddress(i, i, 6, 7);
- sheet.AddMergedRegion(region);
- }
- sheet.SetColumnWidth(4, 16 * 256);
- sheet.SetColumnWidth(6, 32 * 256);
- for (int i = 0; i < dgv.RowCount; i++)
- {
- string imgPath = imagePath + "\\image\\" + dgv.Rows[i].Cells["FieldID"].Value + "_" + dgv.Rows[i].Cells["particleid"].Value + ".bmp";
- //将图片文件读入一个字符串
- if (File.Exists(imgPath))
- {
- byte[] bytes = System.IO.File.ReadAllBytes(imgPath); //路径(加载图片完整路径)
- int pictureIdx = workbook.AddPicture(bytes, PictureType.JPEG);
- //把图片添加到相应的位置
- HSSFPatriarch patriarch = (HSSFPatriarch)sheet.CreateDrawingPatriarch();
- HSSFClientAnchor anchor = new HSSFClientAnchor(0, 0, 0, 0, 4, i + 1, 6, i + 2);
- HSSFPicture pict = (HSSFPicture)patriarch.CreatePicture(anchor, pictureIdx);
- }
- string xrayPath = imagePath + "\\xray\\" + dgv.Rows[i].Cells["FieldID"].Value + "_" + dgv.Rows[i].Cells["particleid"].Value + ".bmp";
- if (File.Exists(xrayPath))
- {
- byte[] bytes = System.IO.File.ReadAllBytes(xrayPath); //路径(加载图片完整路径)
- int pictureIdx = workbook.AddPicture(bytes, PictureType.JPEG);
- //把图片添加到相应的位置
- HSSFPatriarch patriarch = (HSSFPatriarch)sheet.CreateDrawingPatriarch();
- HSSFClientAnchor anchor = new HSSFClientAnchor(0, 0, 0, 0, 6, i + 1, 8, i + 2);
- HSSFPicture pict = (HSSFPicture)patriarch.CreatePicture(anchor, pictureIdx);
- }
- IRow row = sheet.GetRow(i + 1);
- row.Height = 80 * 20; //设置excel行高,像素点是1/20
- }
- //保存为Excel文件
- workbook.Write(ms);
- FileStream file = new FileStream(saveFileName, FileMode.Create);
- workbook.Write(file);
- file.Close();
- workbook = null;
- ms.Close();
- ms.Dispose();
- //**程序结束计时**//
- sw.Stop();
- double totalTime = sw.ElapsedMilliseconds / 1000.0;
- //MessageBox.Show(" 导出成功\n耗时" + totalTime + "s", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
- }
- #endregion
- #region 检测文件是否被占用
- /// <summary>
- /// 判定文件是否打开
- /// </summary>
- [DllImport("kernel32.dll")]
- public static extern IntPtr _lopen(string lpPathName, int iReadWrite);
- [DllImport("kernel32.dll")]
- public static extern bool CloseHandle(IntPtr hObject);
- public const int OF_READWRITE = 2;
- public const int OF_SHARE_DENY_NONE = 0x40;
- public readonly IntPtr HFILE_ERROR = new IntPtr(-1);
- /// <summary>
- /// 检测文件被占用
- /// </summary>
- /// <param name="FileNames">要检测的文件路径</param>
- /// <returns></returns>
- public bool CheckFiles(string FileNames)
- {
- if (!File.Exists(FileNames))
- {
- //文件不存在
- return true;
- }
- IntPtr vHandle = _lopen(FileNames, OF_READWRITE | OF_SHARE_DENY_NONE);
- if (vHandle == HFILE_ERROR)
- {
- //文件被占用
- return false;
- }
- //文件没被占用
- CloseHandle(vHandle);
- return true;
- }
- #endregion
- }
- }
|