OpenXML_????Excel???????
???????????? ???????[ 2015/11/18 11:03:00 ] ??????????????????? ?????
????(5).Datatable????List???????
public class TBToList<T> where T : new()
{
/// <summary>
/// ???????????
/// </summary>
private IList<string> GetColumnNames(DataColumnCollection dcc)
{
IList<string> list = new List<string>();
foreach (DataColumn dc in dcc)
{
list.Add(dc.ColumnName);
}
return list;
}
/// <summary>
///????????????????????????
/// </summary>
private Hashtable GetColumnType(DataColumnCollection dcc)
{
if (dcc == null || dcc.Count == 0)
{
return null;
}
IList<string> colNameList = GetColumnNames(dcc);
Type t = typeof(T);
PropertyInfo[] properties = t.GetProperties();
Hashtable hashtable = new Hashtable();
int i = 0;
if (properties.Length == colNameList.Count)
{
foreach (PropertyInfo p in properties)
{
foreach (string col in colNameList)
{
if (!hashtable.Contains(col))
{
hashtable.Add(col?? p.PropertyType.ToString() + i++);
}
}
}
}
return hashtable;
}
/// <summary>
/// DataTable?????IList
/// </summary>
/// <param name="dt"></param>
/// <returns></returns>
public List<T> ToList(DataTable dt)
{
if (dt == null || dt.Rows.Count == 0)
{
return null;
}
PropertyInfo[] properties = typeof(T).GetProperties();//??????????????????
Hashtable hh = GetColumnType(dt.Columns);//????????????????????????
IList<string> colNames = GetColumnNames(hh);//????????????????????
List<T> list = new List<T>();
T model = default(T);
foreach (DataRow dr in dt.Rows)
{
model = new T();//???????
int i = 0;
foreach (PropertyInfo p in properties)
{
if (p.PropertyType == typeof(string))
{
p.SetValue(model?? dr[colNames[i++]]?? null);
}
else if (p.PropertyType == typeof(int))
{
p.SetValue(model?? int.Parse(dr[colNames[i++]].ToString())?? null);
}
else if (p.PropertyType == typeof(DateTime))
{
p.SetValue(model?? DateTime.Parse(dr[colNames[i++]].ToString())?? null);
}
else if (p.PropertyType == typeof(float))
{
p.SetValue(model?? float.Parse(dr[colNames[i++]].ToString())?? null);
}
else if (p.PropertyType == typeof(double))
{
p.SetValue(model?? double.Parse(dr[colNames[i++]].ToString())?? null);
}
}
list.Add(model);
}
return list;
}
/// <summary>
/// ????????????????????
/// </summary>
private IList<string> GetColumnNames(Hashtable hh)
{
PropertyInfo[] properties = typeof(T).GetProperties();//??????????????????
IList<string> ilist = new List<string>();
int i = 0;
foreach (PropertyInfo p in properties)
{
ilist.Add(GetKey(p.PropertyType.ToString() + i++?? hh));
}
return ilist;
}
/// <summary>
/// ????Value????Key
/// </summary>
private string GetKey(string val?? Hashtable tb)
{
foreach (DictionaryEntry de in tb)
{
if (de.Value.ToString() == val)
{
return de.Key.ToString();
}
}
return null;
}
}
????(6).???List?????????????????????????????????????????????.......
???????????????????????漰???????????????????SPASVOС??(021-61079698-8054)?????????????????????????
??????
?????????????????????????Щ????????????????????TC???????????????Щ???????????????????????????????????????????????(java .net ?????)???mysql???????????????????ж????д???Python???????????????(DB2)??????BufferPool????????????????????????????????6??????????????????滮???????????????-????????SQL Server???????????????????λ?????PHP??SQL????????????????????Pythonд???NoSQL????????? SQL ?е????????????? SQL ?е?????????Java???????:?????MySQL???????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11????????
?????????App Bug???????????????????????Jmeter?????????QC??????APP????????????????app?????е????????jenkins+testng+ant+webdriver??????????????JMeter????HTTP???????Selenium 2.0 WebDriver ??????