黑马程序员----高新技术----之对JavaBean的操作

来源:互联网 发布:申欧网络交换机 编辑:程序博客网 时间:2024/04/29 14:02

---------------------- android培训 、 java培训 、 期待与您交流! ------------------

1、对JavaBean的简单内省操作

JavaBean是一种特殊的Java类,主要用于传递数据信息,这种java类中的方法主要用于访问私有的字段,且方法名符合某种命名规则。

如果要在两个模块之间传递多个信息,可以将这些信息封装到一个JavaBean中,这种JavaBean的实例对象通常称之为值对象(Value Object,简称VO)。这些信息在类中用私有字段来存储,如果读取或设置这些字段的值,则需要通过一些相应的方法来访问,大家觉得这些方法的名称叫什么好呢?JavaBean的属性是根据其中的settergetter方法来确定的,而不是根据其中的成员变量。如果方法名为setId,中文意思即为设置id,至于你把它存到哪个变量上,用管吗?如果方法名为getId,中文意思即为获取id,至于你从哪个变量上取,用管吗?去掉set前缀,剩余部分就是属性名,如果剩余部分的第二个字母是小写的,则把剩余部分的首字母改成小的。

setId()的属性名àid

isLast()的属性名àlast

setCPU的属性名是什么?àCPU

getUPS的属性名是什么?àUPS

总之,一个类被当作javaBean使用时,JavaBean的属性是根据方法名推断出来的,它根本看不到java类内部的成员变量。

 一个符合JavaBean特点的类可以当作普通类一样进行使用,但把它当JavaBean用肯定需要带来一些额外的好处,我们才会去了解和应用JavaBean!好处如下:

Java EE开发中,经常要使用到JavaBean。很多环境就要求按JavaBean方式进行操作,别人都这么用和要求这么做,那你就没什么挑选的余地!

JDK中提供了对JavaBean进行操作的一些API,这套API就称为内省。如果要你自己去通过getX方法来访问私有的x,怎么做,有一定难度吧?用内省这套api操作JavaBean比用普通类的方式更方便。

2、对JavaBean的复杂内省操作

演示用eclipse自动生成 ReflectPoint类的settergetter方法。

直接new一个PropertyDescriptor对象的方式来让大家了解JavaBean API的价值,先用一段代码读取JavaBean的属性,然后再用一段代码设置JavaBean的属性。

演示用eclipse将读取属性和设置属性的流水帐代码分别抽取成方法:

只要调用这个方法,并给这个方法传递了一个对象、属性名和设置值,它就能完成属性修改的功能。

得到BeanInfo最好采用“obj.getClass()”方式,而不要采用类名.class”方式,这样程序更通用。

采用遍历BeanInfo的所有属性方式来查找和设置某个RefectPoint对象的x属性。在程序中把一个类当作JavaBean来看,就是调用IntroSpector.getBeanInfo方法, 得到的BeanInfo对象封装了把这个类当作JavaBean看的结果信息。

32.使用BeanUtils工具包操作JavaBean

演示用eclipse如何加入jar包,先只是引入beanutils包,等程序运行出错后再引入logging包。

在前面内省例子的基础上,用BeanUtils类先get原来设置好的属性,再将其set为一个新值。

get属性时返回的结果为字符串,set属性时可以接受任意类型的对象,通常使用字符串。

PropertyUtils类先get原来设置好的属性,再将其set为一个新值。

get属性时返回的结果为该属性本来的类型,set属性时只接受该属性本来的类型。

演示去掉JavaBeanReflectPoint)的public修饰符时,BeanUtils工具包访问javabean属性时出现的问题。

import java.beans.*;  import java.lang.reflect.*;  import java.util.*;import org.apache.commons.beanutils.BeanUtils;  import org.apache.commons.beanutils.PropertyUtils;  public class BeanTest {  /**  * @param args  * @throws Exception   */  public static void main(String[] args) throws Exception {  ReflectPoint pt1 = new ReflectPoint(3, 5);  String propertyName = "x";  //"x"-->"X"-->"getX"-->MethodGetX-->  Object retVal = getProperty(pt1, propertyName);  Object value = 7;  setProperty(pt1, propertyName, value);  System.out.println(BeanUtils.getProperty(pt1, "x").getClass().getName());  BeanUtils.setProperty(pt1, "x", "9");//这里接收和返回的都是字符串.  System.out.println(pt1.getX());  /*  * java7的新特性  * Map map = (name:"zxx",age:18);  * BeanUtils.setProperty(map,"name","lhm");  * */  BeanUtils.setProperty(pt1, "birthday.time","111" );  System.out.println(BeanUtils.getProperty(pt1, "birthday.time"));  PropertyUtils.setProperty(pt1, "x", 9);//这里接收的是跟Bean中相同的数据类型.  System.out.println(PropertyUtils.getProperty(pt1, "x").getClass().getName());  }private static void setProperty(Object pt1, String propertyName,  Object value) throws IntrospectionException,  IllegalAccessException, InvocationTargetException {  PropertyDescriptor pd2 = new PropertyDescriptor(propertyName, pt1.getClass());  Method methodSetX = pd2.getWriteMethod();  methodSetX.invoke(pt1, value);  }  private static Object getProperty(Object pt1, String propertyName)  throws IntrospectionException, IllegalAccessException,  InvocationTargetException {  /*PropertyDescriptor pd = new PropertyDescriptor(propertyName, pt1.getClass()); Method methodGetX = pd.getReadMethod(); Object retVal = methodGetX.invoke(pt1);*/  BeanInfo beanInfo = Introspector.getBeanInfo(pt1.getClass());  PropertyDescriptor[] pds = beanInfo.getPropertyDescriptors();  Object retVal = null;  for(PropertyDescriptor pd : pds){  if(pd.getName().equals(propertyName)){  Method methodGetX = pd.getReadMethod();  retVal = methodGetX.invoke(pt1);  break;  }  }  return retVal;  }  }  class ReflectPoint {  private Date birthday = new Date();  public Date getBirthday() {  return birthday;  }  public void setBirthday(Date birthday) {  this.birthday = birthday;  }  private int x;  public int y;  public String str1 = "ball";  public String str2 = "basketball";  public String str3 = "itcast";  ReflectPoint(int x, int y) {  super();  this.x = x;  this.y = y;  }  @Override  public String toString() {  return "ReflectPoint [str1=" + str1 + ", str2=" + str2 + ", str3="  + str3 + "]";  }  @Override  public int hashCode() {  final int prime = 31;  int result = 1;  result = prime * result + x;  result = prime * result + y;  return result;  }  @Override  public boolean equals(Object obj) {  if (this == obj)  return true;  if (obj == null)  return false;  if (getClass() != obj.getClass())  return false;  ReflectPoint other = (ReflectPoint) obj;  if (x != other.x)  return false;  if (y != other.y)  return false;  return true;  }  public int getX() {  return x;  }  public void setX(int x) {  this.x = x;  }  public int getY() {  return y;  }  public void setY(int y) {  this.y = y;  }  }  



0 0
原创粉丝点击