csharp: Export or Import excel using MyXls,Spire.Xls

excel 2003 (效果不太理想)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using org.in2bits.MyXls;
using org.in2bits.MyXls.ByteUtil;
using System.IO;
using Directory = org.in2bits.MyOle2.Directory;
using NUnit.Framework;
using org.in2bits.MyOle2;
using System.Diagnostics;
 
 
 
namespace MyxlsDemo
{
 
    /// <summary>
    /// 涂聚文
    /// 20150730
    /// 效果不太理想.
    /// </summary>
    public partial class Form2 : Form
    {
        string strFileUrl = "";
        /// <summary>
        ///
        /// </summary>
        /// <returns></returns>
        DataSet setData()
        {
            //Create an Emplyee DataTable
            DataTable employeeTable = new DataTable("Employee");
            employeeTable.Columns.Add("Employee ID");
            employeeTable.Columns.Add("Employee Name");
            employeeTable.Rows.Add("1", "涂聚文");
            employeeTable.Rows.Add("2", "geovindu");
            employeeTable.Rows.Add("3", "李蘢怡");
            employeeTable.Rows.Add("4", "ноппчц");
            employeeTable.Rows.Add("5", "ニヌネハヒフキカォноппчц");
            //Create a Department Table
            DataTable departmentTable = new DataTable("Department");
            departmentTable.Columns.Add("Department ID");
            departmentTable.Columns.Add("Department Name");
            departmentTable.Rows.Add("1", "IT");
            departmentTable.Rows.Add("2", "HR");
            departmentTable.Rows.Add("3", "Finance");
 
            //Create a DataSet with the existing DataTables
            DataSet ds = new DataSet("Organization");
            ds.Tables.Add(employeeTable);
            ds.Tables.Add(departmentTable);
            return ds;
 
        }
        /// <summary>
        ///
        /// </summary>
        public Form2()
        {
            InitializeComponent();
        }
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void Form2_Load(object sender, EventArgs e)
        {
            this.dataGridView1.DataSource = setData().Tables[0];
        }
        /// <summary>
        /// Excel 2003
        /// 涂聚文
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnFile_Click(object sender, EventArgs e)
        {
            try
            {
                //bool imail = false;
                this.Cursor = Cursors.WaitCursor;
                openFileDialog1.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
                //JPEG Files (*.jpeg)|*.jpeg|PNG Files (*.png)|*.png|JPG Files (*.jpg)|*.jpg|GIF Files (*.gif)|*.gif
                openFileDialog1.Filter = "Excel 2000-2003 files(*.xls)|*.xls|Excel 2007 files (*.xlsx)|*.xlsx";//|(*.xlsx)|*.xlsx Image Files(*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|All files (*.*)|*.*  txt files (*.txt)|*.txt|All files (*.*)|*.*"
                openFileDialog1.FilterIndex = 2;
                openFileDialog1.RestoreDirectory = true;
                if (openFileDialog1.ShowDialog() == DialogResult.OK)
                {
                    if (!openFileDialog1.FileName.Equals(String.Empty))
                    {
                        //重新加载清除数据
                        //this.combSheet.DataSource = null;
                        //if (this.combSheet.Items.Count != 0)
                        //{
                        //    this.combSheet.Items.Clear();
                        //}
                        FileInfo f = new FileInfo(openFileDialog1.FileName);
                        if (f.Extension.Equals(".xls") || f.Extension.Equals(".XLS") || f.Extension.Equals(".xlsx"))
                        {
                            this.Cursor = Cursors.WaitCursor;
                            strFileUrl = openFileDialog1.SafeFileName;
                            this.txtFileUrl.Text = openFileDialog1.FileName;
                            string currentfilename = openFileDialog1.FileName;
                            this.txtFileUrl.Text = currentfilename;
                            XlsDocument xls = new XlsDocument(currentfilename);
                            DataTable com = new DataTable();
                            com.Columns.Add("id", typeof(int));
                            com.Columns.Add("name", typeof(string));
                           // xls.FileName = currentfilename;
                            for(int id  = 0; id < xls.Workbook.Worksheets.Count; id++)
                            {
                                com.Rows.Add(id,xls.Workbook.Worksheets[id].Name);
                            }
                            this.combSheet.DataSource = com;
                            this.combSheet.DisplayMember = "name";
                            this.combSheet.ValueMember = "id";
                            Worksheet sheet = xls.Workbook.Worksheets[0];
                            DataTable dt = new DataTable();
                            //xls.Workbook.Worksheets[0].Name.ToString();
                            int i = 0;
                            int FirstRow = (int)sheet.Rows.MinRow;
                            if (i == 0)
                            {
                                //write data in every cell in the first row in the first worksheet as the column header(note: in order to write data from xls document in DataTable)
                                for (int j = 1; j < sheet.Rows[1].CellCount + 1; j++)
                                {
                                    string ColumnName = Convert.ToString(sheet.Rows[1].GetCell(ushort.Parse(j.ToString())).Value);
                                    DataColumn column = new DataColumn(ColumnName);
                                    dt.Columns.Add(column);
 
                                }
                                FirstRow++;
                            }
                            // write data(not including column header) in datatable rows in sequence
                            for (int k = FirstRow; k < sheet.Rows.MaxRow + 1; k++)
                            {
                                Row row = sheet.Rows[ushort.Parse(k.ToString())];
                                DataRow dataRow = dt.NewRow();
                                for (int z = 1; z < sheet.Rows[ushort.Parse(k.ToString())].CellCount + 1; z++)
                                {
                                    // write data in the current cell if it exists
                                    if (row.GetCell(ushort.Parse(z.ToString())) != null)
                                    {
                                        dataRow[z - 1] = row.GetCell(ushort.Parse(z.ToString())).Value.ToString();
                                    }
 
                                }
                                dt.Rows.Add(dataRow);
                            }
 
                            this.dataGridView1.DataSource = dt;
 
                            this.Cursor = Cursors.Default;
                        }
                        else
                        {
                            MessageBox.Show("错添文件类型");
                        }
                    }
                    else
                    {
                        MessageBox.Show("你要选择一下精确位置的文件");
                    }
 
 
                }
            }
            catch (Exception ex)
            {
                ex.Message.ToString();
            }
            
            this.Cursor = Cursors.Default;
        }
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnImport_Click(object sender, EventArgs e)
        {
 
        }
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void buttonExport_Click(object sender, EventArgs e)
        {
            ExportEasy(setData().Tables[0], "ex.xls");
        }
 
        /// <summary>
        /// 导出
        /// </summary>
        /// <param name="dtSource"></param>
        /// <param name="strFileName"></param>
        public static void ExportEasy(DataTable dtSource, string strFileName)
        {
            try
            {
                XlsDocument xls = new XlsDocument();
                Worksheet sheet = xls.Workbook.Worksheets.Add("Sheet1");
                //填充表头
                foreach (DataColumn col in dtSource.Columns)
                {
                    sheet.Cells.Add(1, col.Ordinal + 1, col.ColumnName);
                }
 
                //填充内容
                for (int i = 0; i < dtSource.Rows.Count; i++)
                {
                    for (int j = 0; j < dtSource.Columns.Count; j++)
                    {
                        sheet.Cells.Add(i + 2, j + 1, dtSource.Rows[i][j].ToString());
                    }
                }
 
                //保存
                xls.FileName = strFileName;
                xls.Save();
            }
            catch (Exception ex)
            {
                ex.Message.ToString();
            }
        }
    }
}

  Spire.Xls

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Spire.Xls;
 
 
 
namespace SpireXlsDemo
{
    public partial class Form1 : Form
    {
 
        /// <summary>
        ///
        /// </summary>
        public Form1()
        {
            InitializeComponent();
        }
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void Form1_Load(object sender, EventArgs e)
        {
 
            try
            {
                string file1 = Environment.CurrentDirectory + @"\2015073001.xls";
                string file2 = Environment.CurrentDirectory + @"\2015073002.xls";
                Workbook workbook = new Workbook();
                //load the first workbook
                workbook.LoadFromFile(@"2015073001.xls");
                //load the second workbook
                Workbook workbook2 = new Workbook();
                workbook2.LoadFromFile(@"2015073002.xls");
 
                //import the second workbook's worksheet into the first workbook using a datatable
                Worksheet sheet2 = workbook2.Worksheets[0];
                DataTable dataTable = sheet2.ExportDataTable();
                Worksheet sheet1 = workbook.Worksheets[0];
                sheet1.InsertDataTable(dataTable, false, sheet1.LastRow + 1, 1);
 
 
                //save the workbook
                workbook.SaveToFile("result.xls");
            }
            catch (Exception ex)
            {
               MessageBox.Show(ex.Message.ToString());
            }
        }
    }
}

  

posted @   ®Geovin Du Dream Park™  阅读(467)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示