Silverlight将Excel导入到SQLserver数据库

最近纠结于读取Excel模板数据,将数据导入SQLServer的Silverlight实现,本文将实现代码贴出,作为一个简单的例子,方便各位:

1.先设计前台界面新建Silverlight5.0应用程序,出现MainPage.xaml,代码如下所示:

<UserControl x:Class="Excel导入SQLServer数据库.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    Width="400" Height="117">

    <Grid x:Name="LayoutRoot" Background="White">
        <ListBox Name="listBox1" HorizontalAlignment="Right" VerticalAlignment="Center" Width="239" Height="23" Margin="0,9,11,47">
        </ListBox>
        <Button x:Name="UploadButton" Content="确认上传" Click="UploadButton_Click" Width="75" Height="23" HorizontalAlignment="Right" Margin="0,37,12,18" />
        <Button x:Name="OpenButton" Content="选择本地Excel文件" Click="OpenButton_Click" Width="116" Height="23" HorizontalAlignment="Right" Margin="0,8,258,47" />
    </Grid>
</UserControl>

其效果图,如下所示:

其后台MainPage.xaml.cs代码,如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.IO;

namespace Excel导入SQLServer数据库
{
    public partial class MainPage : UserControl
    {
        //在此先定义一个List;
        List<FileInfo> filesToUpload;
        public MainPage()
        {
            InitializeComponent();
        }

        /// <summary>
        /// 确认上传
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void UploadButton_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                if (filesToUpload == null)
                {
                    return;
                }
                foreach (FileInfo file in filesToUpload)
                {
                    //Define the Url object for the Handler
                    UriBuilder handlerUrl = new UriBuilder("http://localhost:5952/UploadFileHandler.ashx");//自己的端口
                    //Set the QueryString
                    handlerUrl.Query = "InputFile=" + file.Name;
                    FileStream FsInputFile = file.OpenRead();
                    //Define the WebClient for Uploading the Data
                    WebClient webClient = new WebClient();
                    //Now make an async class for writing the file to the server
                    //Here I am using Lambda Expression
                    webClient.OpenWriteCompleted += (s, evt) =>
                    {
                        UploadFileData(FsInputFile, evt.Result);
                        evt.Result.Close();
                        FsInputFile.Close();
                        MessageBox.Show("上传成功!");
                        listBox1.ItemsSource = "";

                    };
                    webClient.OpenWriteAsync(handlerUrl.Uri);
                }

            }
            catch (System.Exception)
            {

                throw;
            }
        }

        private void UploadFileData(Stream inputFile, Stream resultFile)
        {
            byte[] fileData = new byte[4096];
            int fileDataToRead;
            while ((fileDataToRead = inputFile.Read(fileData, 0, fileData.Length)) != 0)
            {
                resultFile.Write(fileData, 0, fileDataToRead);
            }
        }

        /// <summary>
        /// 打开文件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void OpenButton_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                OpenFileDialog fileDialog = new OpenFileDialog();
                fileDialog.Multiselect = false;
                //这里只写了Excel有关格式,可以根据需要添加其他格式
                fileDialog.Filter = "Excel Files(*.xls,*.xlsx)|*.xls";
                bool? result = fileDialog.ShowDialog();
                if (result != null)
                {
                    if (result == true)
                    {
                        filesToUpload = fileDialog.Files.ToList();
                        listBox1.ItemsSource = filesToUpload;
                    }
                    else
                        return;
                }
            }
            catch (System.Exception)
            {

                throw;
            }
        }
    }
}

注意:将其中的端口号跟自己的程序相对应,如下图:

接着,在.web目录下,新建FilesServer文件夹,和UploadFileHandler.ashx的一般处理程序,如下图:

其中,UploadFileHandler.ashx.cs中内容如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.OleDb;
using System.Data;
using System.Data.SqlClient;
using System.IO;

namespace Excel导入SQLServer数据库.Web
{
    /// <summary>
    /// UploadFileHandler 的摘要说明
    /// </summary>
    public class UploadFileHandler : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            try
            {
                string filename = context.Request.QueryString["InputFile"].ToString();
                using (FileStream fileStream = File.Create(context.Server.MapPath("~/FilesServer/" + filename)))
                {
                    byte[] bufferData = new byte[4096];
                    int bytesToBeRead;
                    while ((bytesToBeRead = context.Request.InputStream.Read(bufferData, 0, bufferData.Length)) != 0)
                    {
                        fileStream.Write(bufferData, 0, bytesToBeRead);
                    }
                    fileStream.Close();

                }
                //===========用于对上传的EXCEL文件插入到SQL数据库中===============

                string strPath = context.Server.MapPath("~/FilesServer/" + filename);
                //string mystring = "Provider = Microsoft.Jet.OleDb.4.0 ; Data Source = ‘" + strPath + "‘;Extended Properties=Excel 8.0";//之前版本链接格式
                string mystring = "Provider =  Microsoft.ACE.OLEDB.12.0 ; Data Source = ‘" + strPath + "‘;Extended Properties=‘Excel 12.0;HDR=Yes;IMEX=1;‘";//office2010链接格式
                OleDbConnection cnnxls = new OleDbConnection(mystring);
                if (cnnxls.State == ConnectionState.Closed)
                {
                    cnnxls.Open();
                }
                OleDbDataAdapter myDa = new OleDbDataAdapter("select * from [Sheet1$]", cnnxls);
                DataSet myDs = new DataSet();
                myDa.Fill(myDs);
                string ConnStr = "Data Source=WIN-FKM3JDGK01I\\MYSQLR2;Initial Catalog=CDDB;Persist Security Info=True;User ID=sa;Password=123456";
                SqlConnection MyConn = new SqlConnection(ConnStr);
                MyConn.Open();
                //读取Excel中的数据
                string xuehao = myDs.Tables[0].Rows[0][0].ToString();
                string xingming = myDs.Tables[0].Rows[0][1].ToString();
                string strSQL = "insert into CDDB.dbo.Student(XUEHAO,NAME) values (‘" + xuehao + "‘,‘" + xingming + "‘)";
                SqlCommand myComm1 = new SqlCommand(strSQL, MyConn);
                myComm1.ExecuteNonQuery();
                MyConn.Close();
                cnnxls.Close();
            }
            catch (Exception)
            {

                throw;
            }

        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}

注意事项,参考下图:

如此,可以将Excel中的数据写入SQLserver数据库中,经测试,可行,附上代码,仅供参考!

附:Excel导入SQLserver示例下载

时间: 2024-10-26 15:23:43

Silverlight将Excel导入到SQLserver数据库的相关文章

c#如何实现excel导入到sqlserver,如何实现从sqlserver导出到excel中(详细)

对于从sqlserver中导入.导出excel,虽然sqlserver已经给了较为简单的方式,通过交互式的对话框形式实现,但是有时这种方式存在的很多问题,比方说导入.导出数据不全.而且,对于一个项目而言,我们都不希望功能的实现离开该软件程序.因此,我们便想着用程序来实现sqlserver的导入导出. 一.从sqlserver中导出excel表 我们将查出的数据首先要保存到数据表中DataTable,这里我就不具体说明如何从查出结果,存放到DataTable中了,相信网上有很多实现的例子. 接下拉

【转】C# Excel 导入到 Access数据库表(winForm版)

/// <summary> /// 获取Excel文件 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void button1_Click(object sender, EventArgs e) { OpenFileDialog dlg = new OpenFileDia

Kettle Excel导入数据到数据库

最近学习大数据的处理,由于项目开发的需要,使用一种简单的方式来将Excel中的数据导入到数据库中,开发使用的kettle工具. kettle工具安装很简单,从官网上下载下来之后,直接解压到制定的盘符下即可(前提是你配置了JAVA的环境变量,path,classpath). 在WINDOWS环境下双击Spoon.bat文件,出现如下图: 点击如图所示的图标,进行本地文件导入的配置 选择红色线框下的选项,点击确定 按照上面的操作,点击确定即可. 直接点击关闭即可. 通过上面两个地方的任意一个都可以创

Excel中的数据导入到SqlServer数据库中

从SqlServer2008才开始支持导出表结构的和表中的数据,而SqlServer2008以前的数据库只支持导出表结构,有些时候我们可能需要把2008以前的数据库中的数据导出来,这个时候我们可以使用折中的方法,先把数据库导出到Excel中,再把Excel中的数据导入到数据库中(如果两台数据库服务器之间可以互通的话,可以直接建立远程链接进行数据传输,不用如此麻烦), 将SqlServer中的数据导出到Excel中比较简单,这里不再贴图,下面是把Excel中的数据导入到SqlServer中步骤:

详解Mysql数据导入到SQLServer数据库中

本地方法不仅限定于Mysql,也可以将Excel.Oracle数据导入到SQLServer中. 这种方法是整个表批量导入和大数据中的sqoop工具差不多. 选择好数据源,例如:Mysql.Excel.Oracle等 编辑映射的时候,找好对应的数据类型,例如:varchar

Excel表格数据导入到SQLServer数据库

转载:http://blog.csdn.net/lishuangzhe7047/article/details/8797416 步骤: 1,选择要插入的数据库--右键--任务--导入数据 2,点击下一步,选择数据源,excel文件路径,和版本信息(注:使用2010及以上版本的office,请先将格式转换为03 或07格式的以便识别) 3,选择目标数据库 4,执行成功 5,查看导入数据,可以重命名 以上就是数据库导入excel文件的步骤,数据库导出数据同理. 很多系统都给我们做好了不同格式文件的导

[原创]Net实现Excel导入导出到数据库(附源码)

关于数据库导出到Excel和SQLServer数据导出到Excel的例子,在博客园有很多的例子,自己根据网上搜集资料,自己做了亦歌简单的demo,现在分享出来供初学者学习交流使用. 一.数据库导入导出到Excel,比较流行的有两种方式:采用传统的office类库和采用NPOI方式. 1.传统的office类库 使用的时候,本地需要安装office才可以正常使用,而且导出速度相对比较慢.有点:支持office 2003 .office2007等. 2.采用NPOI方式 本地不需要安装office,

如何将Excel导入到Mysql数据库中

1.在mysql中建一张和Excel结构一样的表,或者修改excel信息,将excel的结构与mysql中table保持一致,包括字段名称. 2.利用mysql客户端工具navicat进行导入. 步骤: 1.在数据库中找到表,右键,点击“导入导出” 2.根据你要导入的文件类型,选择相关选项,然后下一步 3.选择excel文件存放位置,然后,选择里边的sheet页.我的excel中国sheet页名字是list.然后下一步 4.日期格式 自己配置.我要导入的文件中没有日期,故没有配置.然后点 下一步

SQL Excel导入到sqlserver表

--1.数据表已经创建,Excel首行作为表头 --启用Ad Hoc Distributed Queries: exec sp_configure 'show advanced options',1 reconfigure exec sp_configure 'Ad Hoc Distributed Queries',1 reconfigure go --开始查询数据 if object_id('temp_XXX') is not null drop table temp_XXX go SELEC