123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- using System.IO;
- using System.Data;
- using System;
- using NPOI.HSSF.UserModel;
- using NPOI.SS.UserModel;
- using NPOI.HSSF.Util;
- using NPOI.SS.Formula.Eval;
- using System.Text;
- namespace UAS_MES_NEW.DataOperate
- {
- class ExcelHandler
- {
- DataHelper dh = new DataHelper();
-
-
-
- public string ExportExcel(DataTable dt, string FolderPath)
- {
-
- MemoryStream ms;
- ms = DataTableToExcel(dt);
-
- string filePath = @FolderPath + "\\" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls";
- FileStream fs = new FileStream(filePath, FileMode.Create, FileAccess.Write);
- byte[] data = ms.ToArray();
- fs.Write(data, 0, data.Length);
- fs.Flush();
-
- ms.Dispose();
- fs.Dispose();
- return filePath;
- }
- public string ExportExcel(DataTable dt, string FolderPath, string location)
- {
-
- MemoryStream ms;
- ms = DataTableToExcel(dt);
-
- string filePath = @FolderPath + "\\" + DateTime.Now.ToString("yyyyMMddHHmmss") + location + ".xls";
- FileStream fs = new FileStream(filePath, FileMode.Create, FileAccess.Write);
- byte[] data = ms.ToArray();
- fs.Write(data, 0, data.Length);
- fs.Flush();
-
- ms.Dispose();
- fs.Dispose();
- return filePath;
- }
-
-
-
- public DataTable ImportExcel(string FolderPath, string TableName)
- {
- DataTable dt = new DataTable();
- dt.TableName = TableName;
- if (FolderPath.Contains(".xls") || FolderPath.Contains(".xlsx"))
- {
- using (FileStream file = new FileStream(FolderPath, FileMode.Open, FileAccess.Read))
- {
-
- HSSFWorkbook workbook = new HSSFWorkbook(file);
- ISheet sheet = workbook.GetSheetAt(0);
-
- foreach (ICell item in sheet.GetRow(sheet.FirstRowNum).Cells)
- {
- dt.Columns.Add(item.ToString(), typeof(string));
- }
- System.Collections.IEnumerator rows = sheet.GetRowEnumerator();
- while (rows.MoveNext())
- {
- IRow row = (HSSFRow)rows.Current;
- if (row.RowNum == sheet.FirstRowNum)
- {
- continue;
- }
- DataRow dr = dt.NewRow();
- foreach (ICell item in row.Cells)
- {
- switch (item.CellType)
- {
- case CellType.BOOLEAN:
- dr[item.ColumnIndex] = item.BooleanCellValue;
- break;
- case CellType.ERROR:
- dr[item.ColumnIndex] = ErrorEval.GetText(item.ErrorCellValue);
- break;
- case CellType.FORMULA:
- switch (item.CachedFormulaResultType)
- {
- case CellType.BOOLEAN:
- dr[item.ColumnIndex] = item.BooleanCellValue;
- break;
- case CellType.ERROR:
- dr[item.ColumnIndex] = ErrorEval.GetText(item.ErrorCellValue);
- break;
- case CellType.NUMERIC:
- if (DateUtil.IsCellDateFormatted(item))
- {
- dr[item.ColumnIndex] = item.DateCellValue.ToString("yyyy-MM-dd hh:MM:ss");
- }
- else
- {
- dr[item.ColumnIndex] = item.NumericCellValue;
- }
- break;
- case CellType.STRING:
- string str = item.StringCellValue;
- if (!string.IsNullOrEmpty(str))
- {
- dr[item.ColumnIndex] = str.ToString();
- }
- else
- {
- dr[item.ColumnIndex] = null;
- }
- break;
- case CellType.Unknown:
- case CellType.BLANK:
- default:
- dr[item.ColumnIndex] = string.Empty;
- break;
- }
- break;
- case CellType.NUMERIC:
- if (DateUtil.IsCellDateFormatted(item))
- {
- dr[item.ColumnIndex] = item.DateCellValue.ToString("yyyy-MM-dd hh:MM:ss");
- }
- else
- {
- dr[item.ColumnIndex] = item.NumericCellValue;
- }
- break;
- case CellType.STRING:
- string strValue = item.StringCellValue;
- if (!string.IsNullOrEmpty(strValue))
- {
- dr[item.ColumnIndex] = strValue.ToString();
- }
- else
- {
- dr[item.ColumnIndex] = null;
- }
- break;
- case CellType.Unknown:
- case CellType.BLANK:
- default:
- dr[item.ColumnIndex] = string.Empty;
- break;
- }
- }
- dt.Rows.Add(dr);
- }
- }
- }
- return dt;
- }
- public void WriteTxt(DataTable dt, string FolderPath, string FileName)
- {
- StreamWriter sr;
- string filePath = @FolderPath;
- if (File.Exists(filePath + "\\" + FileName))
- {
- File.Delete(filePath + "\\" + FileName);
- }
- sr = File.CreateText(filePath + "\\" + FileName);
- StringBuilder sb = new StringBuilder();
- string Title = "";
- foreach (DataColumn dc in dt.Columns)
- {
- Title += string.Format("{0,10}", dc.ColumnName.ToString());
- }
- sr.WriteLine(Title + "\r");
- foreach (DataRow dr in dt.Rows)
- {
- string text = "";
- for (int i = 0; i < dt.Columns.Count; i++)
- {
- text += String.Format("{0,10}", dr[i].ToString());
- }
- sr.WriteLine(text + "\r");
- }
- sr.Close();
- }
-
-
-
-
-
- public MemoryStream DataTableToExcel(DataTable DataTable)
- {
-
- MemoryStream ms = new MemoryStream();
-
- HSSFWorkbook book = new HSSFWorkbook();
-
- ISheet sheet = book.CreateSheet("sheet1");
-
- int rowNum = DataTable.Rows.Count;
- int columnNum = DataTable.Columns.Count;
-
- for (int i = 0; i < columnNum; i++)
- {
- int dataLength = DataTable.Columns[i].ColumnName.Length;
- sheet.SetColumnWidth(i, dataLength * 700);
- }
-
- IRow row = sheet.CreateRow(0);
-
- sheet.CreateFreezePane(0, 1, 0, 1);
- ICellStyle style = book.CreateCellStyle();
- style.FillForegroundColor = HSSFColor.PALE_BLUE.index;
- style.FillPattern = FillPatternType.BIG_SPOTS;
- style.FillBackgroundColor = HSSFColor.LIGHT_GREEN.index;
-
- style.BorderBottom = BorderStyle.THICK;
- style.BorderLeft = BorderStyle.THICK;
- style.BorderRight = BorderStyle.THICK;
- style.BorderTop = BorderStyle.THICK;
- row.HeightInPoints = 20;
-
-
-
- for (int j = 0; j < columnNum; j++)
- {
- row.CreateCell(j);
- row.Cells[j].CellStyle = style;
- row.Cells[j].CellStyle.VerticalAlignment = VerticalAlignment.CENTER;
- row.Cells[j].CellStyle.Alignment = HorizontalAlignment.CENTER;
- row.Cells[j].SetCellValue(DataTable.Columns[j].ColumnName);
- }
-
-
- for (int i = 0; i < rowNum; i++)
- {
- IRow row1 = sheet.CreateRow(i + 1);
- row1.HeightInPoints = 20;
- for (int j = 0; j < columnNum; j++)
- {
- row1.CreateCell(j);
- row1.Cells[j].SetCellValue(DataTable.Rows[i][j].ToString());
- row1.GetCell(j).CellStyle.VerticalAlignment = VerticalAlignment.CENTER;
- }
- }
-
- book.Write(ms);
- return ms;
- }
- }
- }
|