一、什么是反射:
反射的概念是由Smith在1982年首次提出的,主要是指程序可以访问、检测和修改它本身状态或行为的一种能力。这一概念的提出很快引发了计算机科学领域关于应用反射性的研究。它首先被程序语言的设计领域所采用,并在Lisp和面向对象方面取得了成绩。其中LEAD/LEAD++ 、OpenC++ 、MetaXa和OpenJava等就是基于反射机制的语言。最近,反射机制也被应用到了视窗系统、操作系统和文件系统中。反射本身并不是一个新概念,尽管计算机科学赋予了反射概念新的含义。在计算机科学领域,反射是指一类应用,它们能够自描述和自控制。也就是说,这类应用通过采用某种机制来实现对自己行为的描述(self-representation)和监测(examination),并能根据自身行为的状态和结果,调整或修改应用所描述行为的状态和相关的语义。二、什么是Java中的类反射:Reflection 是 Java 程序开发语言的特征之一,它允许运行中的 Java 程序对自身进行检查,或者说“自审”,并能直接操作程序的内部属性和方法。Java 的这一能力在实际应用中用得不是很多,但是在其它的程序设计语言中根本就不存在这一特性。例如,Pascal、C 或者 C++ 中就没有办法在程序中获得函数定义相关的信息。Reflection 是 Java 被视为动态(或准动态)语言的关键,允许程序于执行期 Reflection APIs 取得任何已知名称之 class 的內部信息,包括 package、type parameters、superclass、implemented interfaces、inner classes, outer class, fields、constructors、methods、modifiers,並可于执行期生成instances、变更 fields 內容或唤起 methods。三、Java类反射中所必须的类:Java的类反射所需要的类并不多,它们分别是:Field、Constructor、Method、Class、Object,下面我将对这些类做一个简单的说明。Field类:提供有关类或接口的属性的信息,以及对它的动态访问权限。反射的字段可能是一个类(静态)属性或实例属性,简单的理解可以把它看成一个封装反射类的属性的类。Constructor类:提供关于类的单个构造方法的信息以及对它的访问权限。这个类和Field类不同,Field类封装了反射类的属性,而Constructor类则封装了反射类的构造方法。Method类:提供关于类或接口上单独某个方法的信息。所反映的方法可能是类方法或实例方法(包括抽象方法)。 这个类不难理解,它是用来封装反射类方法的一个类。Class类:类的实例表示正在运行的 Java 应用程序中的类和接口。枚举是一种类,注释是一种接口。每个数组属于被映射为 Class 对象的一个类,所有具有相同元素类型和维数的数组都共享该 Class 对象。Object类:每个类都使用 Object 作为超类。所有对象(包括数组)都实现这个类的方法。四、Java的反射类能做什么:看完上面的这么多我想你已经不耐烦了,你以为我在浪费你的时间,那么好吧!下面我们就用一些简单的小例子来说明它。首先我们来看一下通过Java的反射机制我们能得到些什么。首先我们来写一个类:import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
class A extends Object implements ActionListener{
privateint a = 3;
public Integer b = new Integer(4);
public A(){}
public A(int id,String name){}
publicint abc(int id,String name){ return0;}
publicvoid actionPerformed(ActionEvent e){}
}
import java.lang.reflect.*;
class B{
publicstaticvoid main(String args[]){
A r = new A();
Class temp = r.getClass();
try{
System.out.println("反射类中所有公有的属性");
Field[] fb =temp.getFields();
for(int j=0;j<fb.length;j++){
Class cl = fb[j].getType();
System.out.println("fb:"+cl);
}
System.out.println("反射类中所有的属性");
Field[] fa = temp.getDeclaredFields();
for(int j=0;j<fa.length;j++){
Class cl = fa[j].getType();
System.out.println("fa:"+cl);
}
System.out.println("反射类中私有属性的值");
Field f = temp.getDeclaredField("a");
f.setAccessible(true);
Integer i = (Integer)f.get(r);
System.out.println(i);
}catch(Exception e){
e.printStackTrace();
}
}
}
import java.lang.reflect.*;
publicclass SampleConstructor {
publicstaticvoid main(String[] args) {
A r = new A();
printConstructors(r);
}
publicstaticvoid printConstructors(A r) {
Class c = r.getClass();
//获取指定类的类名
String className = c.getName();
try {
//获取指定类的构造方法
Constructor[] theConstructors = c.getConstructors();
for(int i=0; i<theConstructors.length; i++) {
//获取指定构造方法的参数的集合
Class[] parameterTypes = theConstructors[i].getParameterTypes();
System.out.print(className + "(");
for(int j=0; j<parameterTypes.length; j++)
System.out.print(parameterTypes[j].getName() + " ");
System.out.println(")");
}
}catch(Exception e) {
e.printStackTrace();
}
}
}
这个例子很简单,只是用getConstructors()方法获取了反射类的构造方法的集合,并用Constructor类的getParameterTypes()获取该构造方法的参数。
下面我们再来获取一下反射类的父类(超类)和接口import java.io.*;
import java.lang.reflect.*;
publicclass SampleInterface {
publicstaticvoid main(String[] args) throws Exception {
A raf = new A();
printInterfaceNames(raf);
}
publicstaticvoid printInterfaceNames(Object o) {
Class c = o.getClass();
//获取反射类的接口
Class[] theInterfaces = c.getInterfaces();
for(int i=0; i<theInterfaces.length; i++)
System.out.println(theInterfaces[i].getName());
//获取反射类的父类(超类)
Class theSuperclass = c.getSuperclass();
System.out.println(theSuperclass.getName());
}
}
import java.lang.reflect.*;
publicclass SampleMethod {
publicstaticvoid main(String[] args) {
A p = new A();
printMethods(p);
}
publicstaticvoid printMethods(Object o) {
Class c = o.getClass();
String className = c.getName();
Method[] m = c.getMethods();
for(int i=0; i<m.length; i++) {
//输出方法的返回类型
System.out.print(m[i].getReturnType().getName());
//输出方法名
System.out.print(" "+m[i].getName()+"(");
//获取方法的参数
Class[] parameterTypes = m[i].getParameterTypes();
for(int j=0; j<parameterTypes.length; j++){
System.out.print(parameterTypes[j].getName());
if(parameterTypes.length>j+1){
System.out.print(",");
}
}
System.out.println(")");
}
}
}
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
publicclass LoadMethod {
public Object Load(String cName,String MethodName,String[] type,String[] param){
Object retobj = null;
try {
//加载指定的Java类
Class cls = Class.forName(cName);
//获取指定对象的实例
Constructor ct = cls.getConstructor(null);
Object obj = ct.newInstance(null);
//构建方法参数的数据类型
Class partypes[] = this.getMethodClass(type);
//在指定类中获取指定的方法
Method meth = cls.getMethod(MethodName, partypes);
//构建方法的参数值
Object arglist[] = this.getMethodObject(type,param);
//调用指定的方法并获取返回值为Object类型
retobj= meth.invoke(obj, arglist);
}
catch (Throwable e) {
System.err.println(e);
}
return retobj;
}
//获取参数类型Class[]的方法
public Class[] getMethodClass(String[] type){
Class[] cs = new Class[type.length];
for (int i = 0; i < cs.length; i++) {
if(!type[i].trim().equals("")||type[i]!=null){
if(type[i].equals("int")||type[i].equals("Integer")){
cs[i]=Integer.TYPE;
}elseif(type[i].equals("float")||type[i].equals("Float")){
cs[i]=Float.TYPE;
}elseif(type[i].equals("double")||type[i].equals("Double")){
cs[i]=Double.TYPE;
}elseif(type[i].equals("boolean")||type[i].equals("Boolean")){
cs[i]=Boolean.TYPE;
}else{
cs[i]=String.class;
}
}
}
return cs;
}
//获取参数Object[]的方法
public Object[] getMethodObject(String[] type,String[] param){
Object[] obj = new Object[param.length];
for (int i = 0; i < obj.length; i++) {
if(!param[i].trim().equals("")||param[i]!=null){
if(type[i].equals("int")||type[i].equals("Integer")){
obj[i]= new Integer(param[i]);
}elseif(type[i].equals("float")||type[i].equals("Float")){
obj[i]= new Float(param[i]);
}elseif(type[i].equals("double")||type[i].equals("Double")){
obj[i]= new Double(param[i]);
}elseif(type[i].equals("boolean")||type[i].equals("Boolean")){
obj[i]=new Boolean(param[i]);
}else{
obj[i] = param[i];
}
}
}
return obj;
}
}
package org.hibernate.property;
import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.Map; import org.hibernate.HibernateException; import org.hibernate.PropertyAccessException; import org.hibernate.PropertyNotFoundException; import org.hibernate.engine.SessionFactoryImplementor; import org.hibernate.engine.SessionImplementor; import org.hibernate.util.ReflectHelper; /** * Accesses fields directly. * @author Gavin King */ public class DirectPropertyAccessor implements PropertyAccessor { public static final class DirectGetter implements Getter { private final transient Field field; private final Class clazz; private final String name; DirectGetter(Field field, Class clazz, String name) { this.field = field; this.clazz = clazz; this.name = name; } public Object get(Object target) throws HibernateException { try { return field.get(target);//返回指定对象上此 Field 表示的字段的值。 } catch (Exception e) { throw new PropertyAccessException(e, "could not get a field value by reflection", false, clazz, name); } } public Object getForInsert(Object target, Map mergeMap, SessionImplementor session) { return get( target ); } public Method getMethod() { return null; } public String getMethodName() { return null; } public Class getReturnType() { return field.getType(); } Object readResolve() { return new DirectGetter( getField(clazz, name), clazz, name ); } public String toString() { return "DirectGetter(" + clazz.getName() + '.' + name + ')'; } } public static final class DirectSetter implements Setter { private final transient Field field; private final Class clazz; private final String name; DirectSetter(Field field, Class clazz, String name) { this.field = field; this.clazz = clazz; this.name = name; } public Method getMethod() { return null; } public String getMethodName() { return null; } public void set(Object target, Object value, SessionFactoryImplementor factory) throws HibernateException { try { field.set(target, value);//将指定对象变量上此 Field 对象表示的字段设置为指定的新值。 } catch (Exception e) { if(value == null && field.getType().isPrimitive()) { throw new PropertyAccessException( e, "Null value was assigned to a property of primitive type", true, clazz, name ); } else { throw new PropertyAccessException(e, "could not set a field value by reflection", true, clazz, name); } } } public String toString() { return "DirectSetter(" + clazz.getName() + '.' + name + ')'; } Object readResolve() { return new DirectSetter( getField(clazz, name), clazz, name ); } } private static Field getField(Class clazz, String name) throws PropertyNotFoundException { if ( clazz==null || clazz==Object.class ) { throw new PropertyNotFoundException("field not found: " + name); } Field field; try { field = clazz.getDeclaredField(name);//返回一个 Field 对象,该对象反映此 Class 对象所表示的类或接口的指定已声明字段。 } catch (NoSuchFieldException nsfe) { field = getField( clazz, clazz.getSuperclass(), name ); } if ( !ReflectHelper.isPublic(clazz, field) ) field.setAccessible(true); return field; } private static Field getField(Class root, Class clazz, String name) throws PropertyNotFoundException { if ( clazz==null || clazz==Object.class ) { throw new PropertyNotFoundException("field [" + name + "] not found on " + root.getName()); } Field field; try { field = clazz.getDeclaredField(name); } catch (NoSuchFieldException nsfe) { field = getField( root, clazz.getSuperclass(), name ); } if ( !ReflectHelper.isPublic(clazz, field) ) field.setAccessible(true); return field; } public Getter getGetter(Class theClass, String propertyName) throws PropertyNotFoundException { return new DirectGetter( getField(theClass, propertyName), theClass, propertyName ); } public Setter getSetter(Class theClass, String propertyName) throws PropertyNotFoundException { return new DirectSetter( getField(theClass, propertyName), theClass, propertyName ); } } 本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/kubete/archive/2009/08/28/4493977.aspx