namespace Demo
{
public class Test
{
public DataTable getList(string id)
{
DataTable dt = new DataTable();
dt.Columns.Add(new DataColumn("id"));
dt.Columns.Add(new DataColumn("name"));
dt.Columns.Add(new DataColumn("sex"));
DataRow dr = dt.NewRow();
dr["id"] = "zl";
dr["name"] = "張鈴";
dr["sex"] = "男";
dt.Rows.Add(dr);
dr = dt.NewRow();
dr["id"] = "zl";
dr["name"] = "李四";
dr["sex"] = "女";
dt.Rows.Add(dr);
return dt;
}
}
}
項目2(DemoXML)中包含一個Test類,Test類中寫了一個getList方法,這個方法返回的數據是從數據庫讀取的。源代碼如下:
項目2
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.SqlClIEnt;
using System.XML;
namespace DemoXML
{
public class Test
{
private SqlConnection cn;
public DataTable getList(string id)
{
try
{
cn = new SqlConnection(System.Configuration.ConfigurationSet
tings.APPSettings["pubs"]);
SqlCommand cmd = new SqlCommand();
SqlDataAdapter da = new SqlDataAdapter();
cmd.CommandText = "SELECT au_id as id,au_lname as name,au_fname as sex from authors";
cmd.CommandType = CommandType.Text;
cmd.Connection = cn;
da.SelectCommand = cmd;
DataTable dt = new DataTable();
da.Fill(dt);
return dt;
}
catch (Exception ex)
{
throw new ApplicationException("出現異常:"+ex.Message+ex.StackTrace);
}
finally
{
cn.Close();
cn = null;
}
}
}
}
項目3(WebDemo)中演示動態用指定程序集中getList的方法返回一個DataTable,用一個gridvIEw顯示其返回的數據。
調用演示
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Reflection;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
DropBind();
}
}
數據初始化,可配置在web.config文件中#region 數據初始化,可配置在web.config文件中
public void DropBind()
{
DataTable dt = new DataTable();
dt.Columns.Add(new DataColumn("name"));
dt.Columns.Add(new DataColumn("filepath"));
DataRow dr = dt.NewRow();
dr["name"] = "加載自己定義數據";
dr["filepath"] = Server.MapPath(@"Files\Demo.dll");
dt.Rows.Add(dr);
dr = dt.NewRow();
dr["name"] = "加載XML數據";
dr["filepath"] = Server.MapPath(@"Files\DemoXML.dll");
dt.Rows.Add(dr);
this.DropDownList1.DataSource = dt;
this.DropDownList1.DataTextFIEld = "name";
this.DropDownList1.DataValueFIEld = "filepath";
this.DropDownList1.DataBind();
}
#endregion
protected void DropDownList1_SelectedIndExchanged(object sender, EventArgs e)
{
try
{
//讀取選擇指定的dll文件
string strPath = (sender as DropDownList).SelectedValue.Trim();
string NameSpace = this.DropDownList1.SelectedIndex == 0 ? "Demo.Test" : "DemoXML.Test";
//加載指定的程序集之內存中
Assembly assembly = Assembly.LoadFrom(strPath);
//返加程序集中的一個指定的對象,哪果是返回所有對象,則用GetTypes()返回一個Typt對象的數組.
Type T = assembly.GetType(NameSpace);
//返回方法信息(公共方法)
MethodInfo mi = T.GetMethod("getList");
//根據前面type類型創建一個對象
object o = Activator.CreateInstance(T);
//參數
object[] par = new object[] { "E01" };
//通過MethodInfo對象的Invoke方法,動態調用此方法,參數o是因為實例方法需要在調用時有一個實例存在
DataTable dt = (DataTable)mi.Invoke(o, par);
this.GridVIEw1.DataSource = dt;
this.GridVIEw1.DataBind();
}
catch (Exception ex)
{
//do Exception
}
}
}
通過Assembly.LoadFrom方法返回的Assembly對象,可以讀取其中的元數據。其中的GetType會返回一個用於表示指定程序集的type對象(讀取程序集中的所有類型用GetTypes會返回一個type對象的數組)。
返回方法信息(公共方法)
MethodInfo mi = T.GetMethod("getList");
根據前面type類型創建一個對象
object o = Activator.CreateInstance(T);
參數
object[] par = new object[] { "E01" };
通過MethodInfo對象的Invoke方法,動態調用此方法,參數o是因為實例方法需要在調用時有一個實例存在.
DataTable dt = (DataTable)mi.Invoke(o, par);
調用返回的數據顯示列表中。
示例下載:http://www.cnblogs.com/Files/NetFans/Solution2.rar