Read Excel File And Format Records

该博客介绍了一个使用C#编写的ASP.NET应用程序,该程序能够将上传的Excel文件转换为XML格式的字符串,并将其输出到文本框及保存为本地文件。文章详细展示了如何利用OleDb连接Excel并读取数据。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 OutPutExcel.aspx.cs

 

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.OleDb;
using System.Data.SqlClient;
using System.Text;
using System.IO;

public partial class Default3 : System.Web.UI.Page
{
    
private FileStream fs;
    
private Byte[] buff;
    
protected void Page_Load(object sender, EventArgs e)
    
{
        
this.btnOut.Text = "Create String";
        
this.tbStringOutPut.Text = "";
    }

    
private string Alert(string alertString, Page page)
    
{
        
string alert = "<script>alert('";
        alert 
+= alertString;
        alert 
+= "');</script>";
        
return alert;
    }

    
protected void btnOut_Click(object sender, EventArgs e)
    
{
        
if (FileUpload1.PostedFile.FileName == "")
        
{
            Response.Write(
this.Alert("Need Select Excel File!"this.Page));
        }

        
else
        
{

            DataSet ds;
            ds 
= GetOleData(FileUpload1.PostedFile.FileName);
            
try
            
{
                StringBuilder Strings 
= new StringBuilder();
                
for (int a = 0; a < ds.Tables["Records"].Columns.Count; a++)
                
{
                    
for (int b = 0; b < ds.Tables["Records"].Rows.Count; b++)
                    
{
                        Strings.Append(
"<data name="LBL_S_000" + b.ToString() + "" xml:space="preserve"><value>");
                        Strings.Append(Convert.ToString(ds.Tables[
"Records"].Rows[b][a]));
                        Strings.Append(
"</value></data>");
                        Strings.Append(Convert.ToChar(
10));
                    }

                    Strings.Append(
" ");
                }

                
this.tbStringOutPut.Text = Strings.ToString();

                
string str = FileUpload1.PostedFile.FileName.Substring(0, FileUpload1.PostedFile.FileName.LastIndexOf("/")) + "/strings.txt";
                
if (File.Exists(str) == true)
                
{
                    File.Delete(str);
                    fs 
= File.Create(str);
                    fs.Close();
                }

                fs 
= File.Create(str);
                fs.Close();
                fs 
= File.OpenWrite(str);
                buff 
= new UTF8Encoding(true).GetBytes(Strings.ToString());
                fs.Write(buff, 
0, buff.Length);
                fs.Close();
            }

            
catch (OleDbException ew)
            
{
                
if (ew.ErrorCode == -2147467259)
                
{
                    Response.Write(
this.Alert("The Excel File already open !"this.Page));
                }

            }

            
finally
            
{
                ds.Clear();
            }

        }

    }


    
private DataSet GetOleData(string FileAddr)
    
{
        OleDbConnection objConn 
= null;
        DataSet ds 
= new DataSet();
        
try
        
{
            
string strConn = "Provider=Microsoft.Jet.OleDB.4.0;" + "Data Source=" + FileAddr + ";Extended Properties=Excel 8.0;";
            objConn 
= new OleDbConnection(strConn);
            objConn.Open();
            
string strSql = "SELECT * FROM [Sheet1$A1:Z10000]";
            OleDbCommand objCmd 
= new OleDbCommand(strSql, objConn);
            OleDbDataAdapter sqlada 
= new OleDbDataAdapter();
            sqlada.SelectCommand 
= objCmd;
            sqlada.Fill(ds, 
"Records");
            objConn.Close();
        }

        
catch (System.Data.OleDb.OleDbException ee)
        
{
            
if (ee.ErrorCode == -2147467259)
            
{
                Response.Write(
this.Alert("The Excel File already open !"this.Page));
            }

        }

        
catch (Exception e)
        
{
            Response.Write(
this.Alert("Not a Excel File !"this.Page));
            
throw e;
        }

        
return ds;
    }

}


 

OutPutExcel.aspx

 

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="OutPutExcel.aspx.cs" Inherits="Default3" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    
<title>PutOut Strings</title>
</head>
<body>
    
<form id="form1" runat="server">
    
<div>
        
&nbsp;</div>
        
<asp:FileUpload ID="FileUpload1" runat="server" />
        
<asp:Button ID="btnOut" runat="server" OnClick="btnOut_Click" Text="Button" />&nbsp;<br />
        
<br />
        
<asp:TextBox ID="tbStringOutPut" runat="server" Height="1666px" TextMode="MultiLine" Width="100%"></asp:TextBox>
    
</form>
</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值