0

我正在查看一些提供给我的代码,以尝试了解如何将 excel 电子表格加载到DataTable. 我已经让那部分工作了,或者至少我认为它有效,因为它没有异常。我现在想做的是检查是否填充了 DataTable。我遇到的问题是Form从类中识别列表。

这是我的课程的代码:

namespace WindowsFormsApplication12
{
class Class1
{
    public List<DataTable> ImportExcel(string FileName)
    {
        List<DataTable> _dataTables = new List<DataTable>();
        string _ConnectionString = string.Empty;
        string _Extension = Path.GetExtension(FileName);

        if (_Extension.Equals(".xls", StringComparison.CurrentCultureIgnoreCase))
        {
            _ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" + FileName + ";Extended Properties=Excel 12.0;";
        }

        else if (_Extension.Equals(".xlsx", StringComparison.CurrentCultureIgnoreCase))
        {
            _ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + FileName + ";Extended Properties=Excel 12.0 Xml;";
        }

        DataTable dataTable = null;
        var count = 0;
        using (OleDbConnection oleDbConnection = new OleDbConnection(string.Format(_ConnectionString, FileName)))
        {
            oleDbConnection.Open();
            DataTable dbSchema = oleDbConnection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables_Info, null);
            foreach (DataRow item in dbSchema.Rows)
            {
                using (OleDbCommand oleDbCommand = new OleDbCommand())
                {
                    oleDbCommand.Connection = oleDbConnection;
                    oleDbCommand.CommandText = string.Format("SELECT * FROM [Sheet1$]", item["TABLE_NAME"].ToString());

                    using (OleDbDataAdapter oleDbDataAdapter = new OleDbDataAdapter())
                    {
                        if (count < 3)
                        {
                            oleDbDataAdapter.SelectCommand = oleDbCommand;
                            dataTable = new DataTable(item["TABLE_NAME"].ToString());
                            oleDbDataAdapter.Fill(dataTable);
                            _dataTables.Add(dataTable);
                            count++;
                        }
                    }
                }
            }
        }
        return _dataTables;
    }
}
}

这是我的表单的代码:

namespace WindowsFormsApplication12
{
public partial class Form1 : Form
{

    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        string fileName = textBox1.Text;
        Class1 ext = new Class1();

        if (string.IsNullOrEmpty(fileName))
            MessageBox.Show("Please enter a file extension");
        else
            ext.ImportExcel(fileName);
    }
  }
}

我尝试了一些事情,例如:

List<DataTable> ldt = new Class1.ImportExcel ListBox.Items.Add(ext.ImportExcel._dataTables)

连同其他一些东西,但似乎没有任何效果。我已经用谷歌搜索了如何调用 aList并且没有任何工作。我在DataTable之前的练习中调用了 a ,但我无法根据这段代码定制它。如果有一些文件可以帮助我,或者如果我很接近,请把我推向正确的方向。先感谢您。

4

2 回答 2

1

使用以下方式,您可以将列表与任何类型的键一起使用:

List<String> Test = new List<String>();

Test.Add("TEST");
Test.Add("Test");

Console.WriteLine(Test[0]); // TEST
Console.WriteLine(Test[1]); // Test

char[] t = Test[0].ToCharArray();

要通过搜索名称或 id 来获取列表中的某些值,请使用以下方式:

List<String> Test = new List<String>();

Test.Add("TEST");
Test.Add("Test");

string arry = Test.Where(x => x[0] == 'T').ToArray()[0];

Console.WriteLine(arry);

我还没有尝试过数据表的东西,但是你可以很容易地使用这些方法,Foreach 语句也适用于一些东西:

List<String> Test = new List<String>();

Test.Add("TEST");
Test.Add("Test");

foreach (string str in Test)
{
    Console.WriteLine(str);
}
于 2013-10-31T18:25:15.973 回答
1

您可能希望使用FileHelpers库轻松导入数据。


ImportData.cs 文件

[DelimitedRecord(",")] 
public class ImportedData
{ 
    public string DropDownValue;
    public string DropDownText;
}

表格 1 文件

 public partial class Form1 : Form
 {
    private void button1_Click(object sender, EventArgs e)
    {
    string fileName = textBox1.Text;
    FileHelperEngine engine = new FileHelperEngine(typeof(ImportedData));
    // To Read Use:
    ImportedData[] customData = engine.ReadFile(fileName) as ImportedData[];

    // let's say you named your ListBox as listBox1
    listBox1.DataSource = customData;
    listBox1.DataTextField = "DropDownText";
    listBox1.DataValueField = "DropDownValue";
    listBox1.DataBind();
    }
}

如果您不想使用 FileHelper 库,则:

 ListBox.DataSource = ldt;
 ListBox.DataBind();
于 2013-10-31T19:03:11.963 回答