标签:oid excel list default isnull column lan 知识 empty
昨天向数据库中导入Excel数据时 由于空行 总是报错!下面附上两种去除空行的方法!
protected void RemoveEmpty(DataTable dt)
{
List<DataRow> removelist = new List<DataRow>();
for (int i = 0; i < dt.Rows.Count; i++)
{
bool IsNull = true;
for (int j = 0; j < dt.Columns.Count; j++)
{
if (!string.IsNullOrEmpty(dt.Rows[i][j].ToString().Trim()))
{
IsNull = false;
}
}
if (IsNull)
{
removelist.Add(dt.Rows[i]);
}
}
for (int i = 0; i < removelist.Count; i++)
{
dt.Rows.Remove(removelist[i]);
}
}
标签:oid excel list default isnull column lan 知识 empty
原文地址:http://www.cnblogs.com/lizhenlin/p/6343995.html