This commit is contained in:
parent
5ae8d3bae4
commit
a7044c64ea
|
|
@ -502,5 +502,93 @@ namespace BLL
|
||||||
return value.ToString();
|
return value.ToString();
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
public static DataTable ExcelToDataTable1(string filePath)
|
||||||
|
{
|
||||||
|
var dt = new DataTable();
|
||||||
|
using (var file = new FileStream(filePath, FileMode.Open, FileAccess.Read))
|
||||||
|
{
|
||||||
|
var hssfworkbook = new HSSFWorkbook(file);
|
||||||
|
var sheet = hssfworkbook.GetSheetAt(0);
|
||||||
|
var rows = sheet.GetRowEnumerator();
|
||||||
|
rows.MoveNext();
|
||||||
|
var row = (HSSFRow)rows.Current;
|
||||||
|
for (var j = 0; j < row.LastCellNum; j++)
|
||||||
|
{
|
||||||
|
var cell = row.GetCell(j);
|
||||||
|
if (cell != null)
|
||||||
|
{
|
||||||
|
dt.Columns.Add(cell.StringCellValue);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dt.Columns.Add("collum" + j);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
while (rows.MoveNext())
|
||||||
|
{
|
||||||
|
row = (HSSFRow)rows.Current;
|
||||||
|
var dr = dt.NewRow();
|
||||||
|
for (var i = 0; i < row.LastCellNum; i++)
|
||||||
|
{
|
||||||
|
var cell = row.GetCell(i);
|
||||||
|
if (cell == null)
|
||||||
|
{
|
||||||
|
dr[i] = null;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
switch (cell.CellType)
|
||||||
|
{
|
||||||
|
case CellType.Blank:
|
||||||
|
//dr[i] = "[null]";
|
||||||
|
break;
|
||||||
|
case CellType.Boolean:
|
||||||
|
dr[i] = cell.BooleanCellValue;
|
||||||
|
break;
|
||||||
|
case CellType.Numeric:
|
||||||
|
dr[i] = cell.ToString();
|
||||||
|
break;
|
||||||
|
case CellType.String:
|
||||||
|
dr[i] = cell.StringCellValue;
|
||||||
|
break;
|
||||||
|
case CellType.Error:
|
||||||
|
dr[i] = cell.ErrorCellValue;
|
||||||
|
break;
|
||||||
|
case CellType.Formula:
|
||||||
|
try
|
||||||
|
{
|
||||||
|
dr[i] = cell.NumericCellValue;
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
dr[i] = cell.StringCellValue;
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
dr[i] = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
dr[i] = "=" + cell.CellFormula;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dt.Rows.Add(dr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return dt;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -120,35 +120,38 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
string oleDBConnString = String.Empty;
|
//string oleDBConnString = String.Empty;
|
||||||
oleDBConnString = "Provider=Microsoft.Jet.OLEDB.4.0;";
|
//oleDBConnString = "Provider=Microsoft.Jet.OLEDB.4.0;";
|
||||||
oleDBConnString += "Data Source=";
|
//oleDBConnString += "Data Source=";
|
||||||
oleDBConnString += fileName;
|
//oleDBConnString += fileName;
|
||||||
oleDBConnString += ";Extended Properties=Excel 8.0;";
|
//oleDBConnString += ";Extended Properties=Excel 8.0;";
|
||||||
OleDbConnection oleDBConn = null;
|
//OleDbConnection oleDBConn = null;
|
||||||
OleDbDataAdapter oleAdMaster = null;
|
//OleDbDataAdapter oleAdMaster = null;
|
||||||
DataTable m_tableName = new DataTable();
|
//DataTable m_tableName = new DataTable();
|
||||||
DataSet ds = new DataSet();
|
//DataSet ds = new DataSet();
|
||||||
|
|
||||||
oleDBConn = new OleDbConnection(oleDBConnString);
|
//oleDBConn = new OleDbConnection(oleDBConnString);
|
||||||
oleDBConn.Open();
|
//oleDBConn.Open();
|
||||||
m_tableName = oleDBConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
|
//m_tableName = oleDBConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
|
||||||
|
|
||||||
if (m_tableName != null && m_tableName.Rows.Count > 0)
|
//if (m_tableName != null && m_tableName.Rows.Count > 0)
|
||||||
{
|
//{
|
||||||
|
|
||||||
m_tableName.TableName = m_tableName.Rows[0]["TABLE_NAME"].ToString().Trim();
|
// m_tableName.TableName = m_tableName.Rows[0]["TABLE_NAME"].ToString().Trim();
|
||||||
|
|
||||||
}
|
//}
|
||||||
string sqlMaster;
|
//string sqlMaster;
|
||||||
sqlMaster = " SELECT * FROM [" + m_tableName.TableName + "]";
|
//sqlMaster = " SELECT * FROM [" + m_tableName.TableName + "]";
|
||||||
oleAdMaster = new OleDbDataAdapter(sqlMaster, oleDBConn);
|
//oleAdMaster = new OleDbDataAdapter(sqlMaster, oleDBConn);
|
||||||
oleAdMaster.Fill(ds, "m_tableName");
|
//oleAdMaster.Fill(ds, "m_tableName");
|
||||||
oleAdMaster.Dispose();
|
//oleAdMaster.Dispose();
|
||||||
oleDBConn.Close();
|
//oleDBConn.Close();
|
||||||
oleDBConn.Dispose();
|
//oleDBConn.Dispose();
|
||||||
|
|
||||||
AddDatasetToSQL(ds.Tables[0]);
|
//AddDatasetToSQL(ds.Tables[0]);
|
||||||
|
DataTable dt = NPOIHelper.ExcelToDataTable1(fileName);
|
||||||
|
|
||||||
|
this.AddDatasetToSQL(dt);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
|
@ -304,33 +307,35 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
string oleDBConnString = String.Empty;
|
//string oleDBConnString = String.Empty;
|
||||||
oleDBConnString = "Provider=Microsoft.Jet.OLEDB.4.0;";
|
//oleDBConnString = "Provider=Microsoft.Jet.OLEDB.4.0;";
|
||||||
oleDBConnString += "Data Source=";
|
//oleDBConnString += "Data Source=";
|
||||||
oleDBConnString += fileName;
|
//oleDBConnString += fileName;
|
||||||
oleDBConnString += ";Extended Properties=Excel 8.0;";
|
//oleDBConnString += ";Extended Properties=Excel 8.0;";
|
||||||
OleDbConnection oleDBConn = null;
|
//OleDbConnection oleDBConn = null;
|
||||||
OleDbDataAdapter oleAdMaster = null;
|
//OleDbDataAdapter oleAdMaster = null;
|
||||||
DataTable m_tableName = new DataTable();
|
//DataTable m_tableName = new DataTable();
|
||||||
DataSet ds = new DataSet();
|
//DataSet ds = new DataSet();
|
||||||
|
|
||||||
oleDBConn = new OleDbConnection(oleDBConnString);
|
//oleDBConn = new OleDbConnection(oleDBConnString);
|
||||||
oleDBConn.Open();
|
//oleDBConn.Open();
|
||||||
m_tableName = oleDBConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
|
//m_tableName = oleDBConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
|
||||||
|
|
||||||
if (m_tableName != null && m_tableName.Rows.Count > 0)
|
//if (m_tableName != null && m_tableName.Rows.Count > 0)
|
||||||
{
|
//{
|
||||||
|
|
||||||
m_tableName.TableName = m_tableName.Rows[0]["TABLE_NAME"].ToString().Trim();
|
// m_tableName.TableName = m_tableName.Rows[0]["TABLE_NAME"].ToString().Trim();
|
||||||
|
|
||||||
}
|
//}
|
||||||
string sqlMaster = " SELECT * FROM [" + m_tableName.TableName + "]";
|
//string sqlMaster = " SELECT * FROM [" + m_tableName.TableName + "]";
|
||||||
oleAdMaster = new OleDbDataAdapter(sqlMaster, oleDBConn);
|
//oleAdMaster = new OleDbDataAdapter(sqlMaster, oleDBConn);
|
||||||
oleAdMaster.Fill(ds, "m_tableName");
|
//oleAdMaster.Fill(ds, "m_tableName");
|
||||||
oleAdMaster.Dispose();
|
//oleAdMaster.Dispose();
|
||||||
oleDBConn.Close();
|
//oleDBConn.Close();
|
||||||
oleDBConn.Dispose();
|
//oleDBConn.Dispose();
|
||||||
AddDatasetToSQL2(ds.Tables[0]);
|
DataTable dt = NPOIHelper.ExcelToDataTable1(fileName);
|
||||||
|
|
||||||
|
this.AddDatasetToSQL2(dt);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue