Excel文件中第一个表名的缺省值是Sheet1$, 但有时也会被改变为其他名字. 如果需要在C#中使用OleDb读写Excel文件, 就需要知道这个名字是什么. 以下代码就是实现这个功能的:
using System;
using System.IO;
using System.Data;
using System.Data.OleDb;

namespace Skyiv.Ben.Util


{
sealed class Pub

{
public static string GetExcelFirstTableName(string excelFileName)

{
string tableName = null;
if (File.Exists(excelFileName))

{
using (OleDbConnection conn = new OleDbConnection("Provider=Microsoft.Jet."+
"OLEDB.4.0;Extended Properties=\"Excel 8.0\";Data Source=" + excelFileName))

{
conn.Open();
DataTable dt = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
tableName = dt.Rows[0][2].ToString().Trim();
}
}
return tableName;
}
}
}

namespace Skyiv.Ben.Test


{
using Skyiv.Ben.Util;
class MainTest

{
static void Main(string [] args)

{
foreach (string s in args)
Console.WriteLine("[{0}] => [{1}]", s, Pub.GetExcelFirstTableName(s));
}
}
}
using System;
using System.IO;
using System.Data;
using System.Data.OleDb;
namespace Skyiv.Ben.Util

{
sealed class Pub
{
public static string GetExcelFirstTableName(string excelFileName)
{
string tableName = null;
if (File.Exists(excelFileName))
{
using (OleDbConnection conn = new OleDbConnection("Provider=Microsoft.Jet."+
"OLEDB.4.0;Extended Properties=\"Excel 8.0\";Data Source=" + excelFileName))
{
conn.Open();
DataTable dt = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
tableName = dt.Rows[0][2].ToString().Trim();
}
}
return tableName;
}
}
}
namespace Skyiv.Ben.Test

{
using Skyiv.Ben.Util;
class MainTest
{
static void Main(string [] args)
{
foreach (string s in args)
Console.WriteLine("[{0}] => [{1}]", s, Pub.GetExcelFirstTableName(s));
}
}
}
本文介绍了一段C#代码,该代码能够从指定的Excel文件中读取并返回第一个工作表的名字,无论其是否为默认的Sheet1$。
1万+

被折叠的 条评论
为什么被折叠?



