功能: 通过读取另一个Dll去创建一个控件(Form,Button,TextBox,DataGridView),然后对当中一些属性进行检查. 创建控件的大致流程是,Assembly->Module,然后遍历Module的Type,然后创建,下面是反射 Field.getValue setValue Method.invoke 其实都是赋值的意思.. 1.反射属性: Button btn= new Button(); // 定义一个Button btn.Text = "i am but
首先推荐三个十分有趣的网站: http://www.programcreek.com/simple-java/ http://tutorials.jenkov.com/ http://www.meetup.com/ Java Reflection makes it possible to inspect classes, interfaces, fields and methods at runtime, without knowing the names of the classes, met