详解C#利用DataTable导出Excel

本文详细介绍了如何使用C#通过DataTable读取Excel数据,并进行相关操作,最后将DataTable转换为Excel文件进行保存。关键步骤包括Excel的读取、转化为DataTable、数据处理以及DataTable转回Excel的保存过程。
摘要由CSDN通过智能技术生成

本文主要实现利用总表向分表中添加数据,主界面如下:

整个小项目中主要有一下几个关键步骤:Excel表的读取及转成datatable进行相关的数据操作,到后面datatable转成excel保存,

整个代码如下:

using System;
using System.Collections.Generic;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.IO;
using System.Data.OleDb;
using System.Windows.Forms;
<strong>using Microsoft.Office.Interop.Excel</strong>;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        string detailPath1 = "";
        string detailPath2 = "";

        private void button1_Click(object sender, EventArgs e)
        {
            OpenFileDialog oFile1 = new OpenFileDialog();
            oFile1.Filter = "Excel文件(*.xls)|*.xls";

            if (oFile1.ShowDialog() == DialogResult.OK)
            {
                string oFName1 = oFile1.FileName.ToString();
                detailPath1 = textBox1.Text = oFName1;

            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            OpenFileDialog oFile2 = new OpenFileDialog();
            oFile2.Filter = "Excel文件(*.xls)|*.xls";

            if (oFile2.ShowDialog() == DialogResult.OK)
            {
                string oFName2 = oFile2.FileName.ToString();
                detailPath2 = textBox2.Text = oFName2;

            }
        }

        //CheckedListBox实现单选
        private void checkedListBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            for (int i = 0; i < checkedListBox1.Items.Count; i++)
            {
                checkedListBox1.SetItemChecked(i, false);
            }
            if (checkedListBox1.CheckedItems == null)
            {
                checkedListBox1.SetItemChecked(checkedListBox1.SelectedIn
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值