使用SmartXLS将数据从excel文件(带有日期列)导出到DataGrid

时间:2015-01-21 14:06:56

标签: c# wpf excel datagrid smartxls

我已成功通过以下代码将数据从excel导出到datagrid:

using System;
using System.Data;
using System.Windows;
using System.Windows.Data;
using SmartXLS;


namespace Calibration_Trial
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            WorkBook m_book = new WorkBook();
            m_book.readXLSX("trial.xlsx");

            //Read data from spreadsheet.
            DataTable mbooktable = m_book.ExportDataTable(9, 0, 4, 4, false, true);


            simpleDataGrid.ItemsSource = mbooktable.AsDataView();
        }
    }
}

ExportDataTable有6个参数,如您所见。最后一个参数是true,这意味着它应检查该列是否为datetime类型。所以我不知道为什么我仍然得到错误的输出。我错过了什么吗?

这是截图(Column4应该是DateTime格式:(): The Column4 should be of DateTime format :(

2 个答案:

答案 0 :(得分:0)

我认为只有当列中的每个值(在excel文件本身中)都是日期格式时,DateTime格式才有效。我想没有其他方法可以删除不是日期格式的所有内容。 ☹

答案 1 :(得分:0)

我知道这个问题有点老了,但这对我有用,可能对其他人有帮助......

我在datagrid视图中获取单元格的值,作为字符串

string val = "";
if (dgv.Rows[rowCount].Cells[colCount].Value != null)
    val = dgv.Rows[rowCount].Cells[colCount].Value.ToString();

然后我检查是否是日期

DateTime dt = IsDate(val);

if (dt.Year != 1900)
    val = dt.ToString("yyyy/MM/dd");

如果函数返回年份不是1900的日期,则将日期以yyyy / mm / dd格式传递给字符串,然后使用字符串作为单元格值。

xlRange.Value2 = val;

这里的功能......非常简单,但就像我说的那样,它对我有用。

private DateTime IsDate(string toCheck)
{
    DateTime dt = new DateTime();
    if (DateTime.TryParse(toCheck, out dt))
        dt = DateTime.Parse(toCheck);
    else
        dt = DateTime.Parse("1900/01/01");

    return dt;
}