zoukankan      html  css  js  c++  java
  • [OpenXml] Read/Write row/cell from excel

            public static void test(){
                using (SpreadsheetDocument document = SpreadsheetDocument.Open("test.xlsx", true))
                {
                    WorkbookPart workbookPart = document.WorkbookPart;
    
                    string relId = workbookPart.Workbook.Descendants<Sheet>().First(sheet => sheet.Name.Value.ToLower().Equals("sheet1")).Id;
                    WorksheetPart worksheetpart = (WorksheetPart)workbookPart.GetPartById(relId);
    
                    DocumentFormat.OpenXml.Spreadsheet.Worksheet worksheet = worksheetpart.Worksheet;
                    SheetData sheetData = worksheet.GetFirstChild<SheetData>();
    
                    for (int i = 2; i <= 3; i++)
                    {
                        Row row = new Row() { RowIndex = (uint)i };
                        row.Append(new Cell() { CellReference = "A" + i, DataType = CellValues.String, CellValue = new CellValue("kaka") });//, StyleIndex = styleIndex });
                        row.Append(new Cell() { CellReference = "B" + i, DataType = CellValues.String, CellValue = new CellValue("2") });//, StyleIndex = styleIndex });
                        row.Append(new Cell() { CellReference = "C" + i, DataType = CellValues.String, CellValue = new CellValue("GENERAL MANAGEMENT") });//, StyleIndex = styleIndex });
                        row.Append(new Cell() { CellReference = "D" + i, DataType = CellValues.String, CellValue = new CellValue("2") });//, StyleIndex = styleIndex });
                        row.Append(new Cell() { CellReference = "E" + i, DataType = CellValues.String, CellValue = new CellValue((1 == 1).ToString()) });//, StyleIndex = styleIndex });
                        sheetData.Append(row);
                    }
    
                    // loop each row to get value;
                    string cellValue = GetCellValue(sheetData.Descendants<Row>().ElementAt<Row>(0), "A", getSharedString(document));
    
                    worksheet.Save();
                }
            }
    
            private static List<SharedStringItem> getSharedString(SpreadsheetDocument document)
            {
                WorkbookPart workbookPart = document.WorkbookPart;
                return workbookPart.SharedStringTablePart.SharedStringTable.Elements<SharedStringItem>().ToList<SharedStringItem>();
            }
    
            // cell could be null
            private static Cell GetCell(Row row, string columnName)
            {
                return row.Descendants<Cell>().FirstOrDefault(p => p.CellReference == columnName + row.RowIndex);
            }
    
            // call getSharedString
            // call GetCell
            // => retrieve cell value
            public static string GetCellValue(Row row, string columnName, List<SharedStringItem> sharedStrings)
            {
                Cell cell = GetCell(row, columnName);
    
                if (cell == null)
                {
                    return null;
                }
    
                string value = "";
    
                if (cell.DataType != null && cell.DataType.Value == CellValues.SharedString)
                {
                    SharedStringItem item = sharedStrings.ElementAt<SharedStringItem>(Int32.Parse(cell.CellValue.Text));
                    value = item.InnerText;
                }
                else
                {
                    value = cell.CellValue.Text;
                }
                return value;
            }
    
  • 相关阅读:
    带下拉子菜单的导航菜单
    如何使用myFocus插件制作焦点图效果
    将博客搬至CSDN
    《转》二进制与三进制的那些趣题
    二叉树遍历 (前序 层次 == 深度 广度) 层次遍历
    数组全排列 knuth 分解质因数
    堆排序
    双向快速排序
    二路归并排序
    字符串的排列
  • 原文地址:https://www.cnblogs.com/webglcn/p/4679920.html
Copyright © 2011-2022 走看看