欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

OpenXml讀寫Excel實(shí)例代碼

 更新時間:2013年12月02日 14:50:47   作者:  
這篇文章主要介紹了OpenXml讀寫Excel代碼分享,大家參考使用

新版本的xlsx是使用新的存儲格式,貌似是處理過的XML。

對于OpenXML我網(wǎng)上搜了一下,很多人沒有介紹。所以我就這里推薦下,相信會成為信息系統(tǒng)開發(fā)的必備。

先寫出個例子,會發(fā)現(xiàn)如此的簡介:

復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Text;
using XFormular.config;
using System.IO;
using com.xtar.amfx;
using System.Runtime.Serialization.Formatters.Binary;
using System.Data;

namespace XFormular.test
{
    class Class1
    {
        public void test()
        {
            DataTable table = new DataTable("1");
            table.Columns.Add("2");
            for (int i = 0; i < 10; i++)
            {
                DataRow row = table.NewRow();
                row[0] = i;
                table.Rows.Add(row);
            }

            List<DataTable> lsit = new List<DataTable>();
            lsit.Add(table);

            OpenXmlSDKExporter.Export(AppDomain.CurrentDomain.BaseDirectory + "\\excel.xlsx", lsit);
        }
    }
}

寫出代碼

復(fù)制代碼 代碼如下:

using System;
using System.IO;
using System.Windows.Forms;
using DocumentFormat.OpenXml;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Spreadsheet;
using DocumentFormat.OpenXml.Extensions;
using System.Collections.Generic;
using System.Data;
using System.Text.RegularExpressions;

namespace XFormular
{
    class OpenXmlSDKExporter
    {
        private static string[] Level = {"A", "B", "C", "D", "E", "F", "G",
    "H", "I", "G", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T",
    "U", "V", "W", "X", "Y", "Z" };

        public static List<DataTable> Import(string path)
        {
            List<DataTable> tables = new List<DataTable>();

            if (path.EndsWith(ExcelHelper.POSTFIX_SVN))
                return tables;

            using (MemoryStream stream = SpreadsheetReader.StreamFromFile(path))
            {
                using (SpreadsheetDocument doc = SpreadsheetDocument.Open(stream, true))
                {
                    foreach (Sheet sheet in doc.WorkbookPart.Workbook.Descendants<Sheet>())
                    {
                        DataTable table = new DataTable(sheet.Name.Value);

                        WorksheetPart worksheet = (WorksheetPart)doc.WorkbookPart.GetPartById(sheet.Id);

                        List<string> columnsNames = new List<string>();

                        foreach (Row row in worksheet.Worksheet.Descendants<Row>())
                        {
                            foreach (Cell cell in row)
                            {
                                string columnName = Regex.Match(cell.CellReference.Value, "[a-zA-Z]+").Value;

                                if (!columnsNames.Contains(columnName))
                                {
                                    columnsNames.Add(columnName);
                                }

                            }
                        }

                        columnsNames.Sort(CompareColumn);

                        foreach (string columnName in columnsNames)
                        {
                            table.Columns.Add(columnName);
                        }

                        foreach (Row row in worksheet.Worksheet.Descendants<Row>())
                        {
                            DataRow tableRow = table.NewRow();
                            table.Rows.Add(tableRow);

                            foreach (Cell cell in row)
                            {
                                string columnName = Regex.Match(cell.CellReference.Value, "[a-zA-Z]+").Value;
                                tableRow[columnName] = GetValue(cell, doc.WorkbookPart.SharedStringTablePart);
                            }
                        }

                        if (table.Rows.Count <= 0)
                            continue;
                        if (table.Columns.Count <= 0)
                            continue;

                        tables.Add(table);
                    }
                }
            }

            return tables;
        }

        public static String GetValue(Cell cell, SharedStringTablePart stringTablePart)
        {

            if (cell.ChildElements.Count == 0)

                return null;

            //get cell value

            String value = cell.CellValue.InnerText;

            //Look up real value from shared string table

            if ((cell.DataType != null) && (cell.DataType == CellValues.SharedString))

                value = stringTablePart.SharedStringTable

                .ChildElements[Int32.Parse(value)]

                .InnerText;

            return value;

        }


        public static void Export(string path, List<DataTable> tables)
        {
            using (MemoryStream stream = SpreadsheetReader.Create())
            {
                using (SpreadsheetDocument doc = SpreadsheetDocument.Open(stream, true))
                {
                    SpreadsheetWriter.RemoveWorksheet(doc, "Sheet1");
                    SpreadsheetWriter.RemoveWorksheet(doc, "Sheet2");
                    SpreadsheetWriter.RemoveWorksheet(doc, "Sheet3");

                    foreach (DataTable table in tables)
                    {
                        WorksheetPart sheet = SpreadsheetWriter.InsertWorksheet(doc, table.TableName);
                        WorksheetWriter writer = new WorksheetWriter(doc, sheet);

                        SpreadsheetStyle style = SpreadsheetStyle.GetDefault(doc);

                        foreach (DataRow row in table.Rows)
                        {
                            for (int i = 0; i < table.Columns.Count; i++)
                            {
                                string columnName = SpreadsheetReader.GetColumnName("A", i);
                                string location = columnName + (table.Rows.IndexOf(row) + 1);
                                writer.PasteText(location, row[i].ToString(), style);
                            }
                        }

                        writer.Save();
                    }
                    SpreadsheetWriter.StreamToFile(path, stream);//保存到文件中
                }
            }
        }

        private static int CompareColumn(string x, string y)
        {
            int xIndex = Letter_to_num(x);
            int yIndex = Letter_to_num(y);
            return xIndex.CompareTo(yIndex);
        }

        /// <summary>
        /// 數(shù)字26進(jìn)制,轉(zhuǎn)換成字母,用遞歸算法
        /// </summary>
        /// <param name="value"></param>
        /// <returns></returns>
        private static string Num_to_letter(int value)
        {
            //此處判斷輸入的是否是正確的數(shù)字,略(正在表達(dá)式判斷)
            int remainder = value % 26;
            //remainder = (remainder == 0) ? 26 : remainder;
            int front = (value - remainder) / 26;
            if (front < 26)
            {
                return Level[front - 1] + Level[remainder];
            }
            else
            {
                return Num_to_letter(front) + Level[remainder];
            }
            //return "";
        }

        /// <summary>
        /// 26進(jìn)制字母轉(zhuǎn)換成數(shù)字
        /// </summary>
        /// <param name="letter"></param>
        /// <returns></returns>
        private static int Letter_to_num(string str)
        {
            //此處判斷是否是由A-Z字母組成的字符串,略(正在表達(dá)式片段)
            char[] letter = str.ToCharArray(); //拆分字符串
            int reNum = 0;
            int power = 1; //用于次方算值
            int times = 1;  //最高位需要加1
            int num = letter.Length;//得到字符串個數(shù)
            //得到最后一個字母的尾數(shù)值
            reNum += Char_num(letter[num - 1]);
            //得到除最后一個字母的所以值,多于兩位才執(zhí)行這個函數(shù)
            if (num >= 2)
            {
                for (int i = num - 1; i > 0; i--)
                {
                    power = 1;//致1,用于下一次循環(huán)使用次方計算
                    for (int j = 0; j < i; j++)           //冪,j次方,應(yīng)該有函數(shù)
                    {
                        power *= 26;
                    }
                    reNum += (power * (Char_num(letter[num - i - 1]) + times));  //最高位需要加1,中間位數(shù)不需要加一
                    times = 0;
                }
            }
            //Console.WriteLine(letter.Length);
            return reNum;
        }

        /// <summary>
        /// 輸入字符得到相應(yīng)的數(shù)字,這是最笨的方法,還可用ASIICK編碼;
        /// </summary>
        /// <param name="ch"></param>
        /// <returns></returns>
        private static int Char_num(char ch)
        {
            switch (ch)
            {
                case 'A':
                    return 0;
                case 'B':
                    return 1;
                case 'C':
                    return 2;
                case 'D':
                    return 3;
                case 'E':
                    return 4;
                case 'F':
                    return 5;
                case 'G':
                    return 6;
                case 'H':
                    return 7;
                case 'I':
                    return 8;
                case 'J':
                    return 9;
                case 'K':
                    return 10;
                case 'L':
                    return 11;
                case 'M':
                    return 12;
                case 'N':
                    return 13;
                case 'O':
                    return 14;
                case 'P':
                    return 15;
                case 'Q':
                    return 16;
                case 'R':
                    return 17;
                case 'S':
                    return 18;
                case 'T':
                    return 19;
                case 'U':
                    return 20;
                case 'V':
                    return 21;
                case 'W':
                    return 22;
                case 'X':
                    return 23;
                case 'Y':
                    return 24;
                case 'Z':
                    return 25;
            }
            return -1;
        }
    }
}

復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.OleDb;

namespace xtar_biz_codegen
{
    class ExcelHelper
    {
        public static string POSTFIX_97 = "XLS";

        public static string POSTFIX_03 = "XLSX";
    }
}

相關(guān)文章

  • C#實(shí)現(xiàn)文件上傳以及多文件上傳功能

    C#實(shí)現(xiàn)文件上傳以及多文件上傳功能

    這篇文章主要為大家詳細(xì)介紹了C#實(shí)現(xiàn)文件上傳以及多文件上傳功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-05-05
  • C#獲取某路徑文件夾中全部圖片或其它指定格式的文件名的實(shí)例方法

    C#獲取某路徑文件夾中全部圖片或其它指定格式的文件名的實(shí)例方法

    在本篇文章里小編給大家整理的是關(guān)于C#獲取某路徑文件夾中全部圖片或其它指定格式的文件名的實(shí)例方法,需要的朋友們參考下。
    2019-10-10
  • C#獲取進(jìn)程的主窗口句柄的實(shí)現(xiàn)方法

    C#獲取進(jìn)程的主窗口句柄的實(shí)現(xiàn)方法

    C#獲取進(jìn)程的主窗口句柄的實(shí)現(xiàn)方法,需要的朋友可以參考一下
    2013-04-04
  • C#中this的用法集錦

    C#中this的用法集錦

    本文給大家匯總介紹了C#中的幾種this用法,相信大家應(yīng)該有用過,但你用過幾種?以下是個人總結(jié)的this幾種用法,歡迎大家拍磚,廢話少說,直接列出用法及相關(guān)代碼。
    2015-06-06
  • c#中值類型和引用類型的基礎(chǔ)教程

    c#中值類型和引用類型的基礎(chǔ)教程

    這篇文章主要給大家介紹了關(guān)于c#中值類型和引用類型的基礎(chǔ)教程,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-06-06
  • C#中如何限制TextBox控件內(nèi)輸入值的范圍

    C#中如何限制TextBox控件內(nèi)輸入值的范圍

    這篇文章主要介紹了C#中如何限制TextBox控件內(nèi)輸入值的范圍,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-01-01
  • 事務(wù)在c#中的使用

    事務(wù)在c#中的使用

    這篇文章介紹了事務(wù)在c#中的使用,文中通過示例代碼介紹的非常詳細(xì)。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2022-05-05
  • python實(shí)現(xiàn)AutoResetEvent類的阻塞模式方法解析

    python實(shí)現(xiàn)AutoResetEvent類的阻塞模式方法解析

    AutoResetEvent :當(dāng)某個線程執(zhí)行到WaitOne()方法時,該線程則會處于阻塞模式,當(dāng)被調(diào)用了Set()方法,阻塞的線程則會繼續(xù)向下執(zhí)行,其狀態(tài)立即被自動設(shè)置為阻塞模式
    2012-11-11
  • C# WinForm編程獲取文件物理路徑的方法

    C# WinForm編程獲取文件物理路徑的方法

    這篇文章主要介紹了C# inForm編程獲取文件物理路徑的方法,獲取的物理路徑是軟件即軟件安裝所在目錄,需要的朋友可以參考下
    2014-08-08
  • C#使用系統(tǒng)方法發(fā)送異步郵件完整實(shí)例

    C#使用系統(tǒng)方法發(fā)送異步郵件完整實(shí)例

    這篇文章主要介紹了C#使用系統(tǒng)方法發(fā)送異步郵件實(shí)現(xiàn)方法,結(jié)合完整實(shí)例形式分析了C#異步調(diào)用與郵件發(fā)送的相關(guān)技巧,具有一定參考借鑒價值,需要的朋友可以參考下
    2016-07-07

最新評論