如何将结果集复制到对象中?

时间:2013-02-18 05:05:21

标签: java database javabeans resultset

我使用以下内容将检索到的值添加到类中。所有值都将添加到类的属性中,但我使用的是compisition(在类中有一个类的对象),并且它在输出中没有显示任何内容。

class employee 
{
....
private Address address = new Address();
.....
}
 ...
Employee emp = new Employee();
        try {

            ps = con.prepareStatement("select * from employee,address "
                    + "WHERE employee.username = ? AND "
                    + "employee.ADD_ID = address.ID");

            ps.setString(1, username);
            ResultSet r = ps.executeQuery();
            if (r.next()) {

                BeanProcessor bp = new BeanProcessor();
                emp = bp.toBean(r,Employee.class);
                System.out.println("blockkkk:"+emp.getAddress().getBlock());  
                                            //output of above line is blockkkk:null
            }

            con.close();
            ps.close();
        } catch (SQLException e) {
            System.err.println(e.getMessage());

        }
       return emp;

地址类如下:

  public class Address {
    .....
    private String block;
    ....
      public String getBlock() {
            return block;
        }

        public void setBlock(String block) {
            this.block = block;
        }
    ....
   }

2 个答案:

答案 0 :(得分:1)

BeanProcessor.toBean的工作原理如下:

将ResultSet行转换为JavaBean。此实现使用反射和BeanInfo类将列名称与bean属性名称匹配。根据以下几个因素将属性与列匹配:

  • 该类具有与列相同名称的可写属性。名称比较不区分大小写。
  • 可以使用ResultSet.get *方法将列类型转换为属性的set方法参数类型。如果转换失败(即属性为int且列为Timestamp),则抛出SQLException。

当从ResultSet返回SQL NULL时,原始bean属性设置为其默认值。数字字段设置为0,布尔值设置为false。返回SQL NULL时,对象bean属性设置为null。这与ResultSet get *方法的行为相同。

可能是地址不是可写属性。请检查一下。

答案 1 :(得分:0)

 public static Object copyFromResultSet(Class clazz, ResultSet resultSet)
{
    ArrayList objectArrayList = new ArrayList(1);
    try
    {
        Object object = clazz.newInstance();
        objectArrayList.add(object);
        copyFromResultSet(objectArrayList, resultSet);
    }
    catch (Exception e)
    {
        e.printStackTrace();
    }
    return objectArrayList.get(0);
}     

然后:

public static void copyFromResultSet(ArrayList<Object> objectArrayList, ResultSet resultSet)
{
    ArrayList arrayList = null;
    try
    {
        if (objectArrayList != null)
        {
            int objectArrayList_len = objectArrayList.size();
            int objectArrayList_index = 0;
            java.beans.BeanInfo toBeanInfo[] = new java.beans.BeanInfo[objectArrayList_len];

            Vector<Method> objectMethodVector[] = new Vector[objectArrayList_len];
            Vector<Type> objectTypeVector[] = new Vector[objectArrayList_len];
            int totalMethod[] = new int[objectArrayList_len];
            int[][] indexes = new int[objectArrayList_len][];

            for (objectArrayList_index = 0; objectArrayList_index < objectArrayList_len; objectArrayList_index++)
            {
                toBeanInfo[objectArrayList_index] = java.beans.Introspector.getBeanInfo(objectArrayList.get(objectArrayList_index).getClass());
            }
            if (objectArrayList_len > 0 && resultSet != null)
            {
                Method method = null;
                Type type[] = null;
                int cols = 0;
                String colName = null;
                for (objectArrayList_index = 0; objectArrayList_index < objectArrayList_len; objectArrayList_index++)
                {
                    //toBeanInfo[objectArrayList_index]=java.beans.Introspector.getBeanInfo(objectArrayList.get(objectArrayList_index).getClass());
                    java.beans.PropertyDescriptor toPropertyDescriptor[] = toBeanInfo[objectArrayList_index].getPropertyDescriptors();
                    int toPropertyDescriptor_length = toPropertyDescriptor.length;
                    method = null;
                    type = null;

                    ResultSetMetaData resultSetMetaData = resultSet.getMetaData();

                    cols = resultSetMetaData.getColumnCount();
                    colName = null;

                    Vector<Method> methodVector = new Vector(cols);
                    Vector<Type> typeVector = new Vector(cols);

                    indexes[objectArrayList_index] = new int[cols];
                    totalMethod[objectArrayList_index] = -1;
                    for (int i = 1; i <= cols; i++)
                    {
                        colName = resultSetMetaData.getColumnName(i);
                        for (int j = 0; j < toPropertyDescriptor_length; j++)
                        {
                            if (toPropertyDescriptor[j].getName().equalsIgnoreCase(colName))
                            {
                                totalMethod[objectArrayList_index]++;
                                method = toPropertyDescriptor[j].getWriteMethod();
                                type = method.getGenericParameterTypes();
                                methodVector.add(method);
                                typeVector.add(type[0]);
                                indexes[objectArrayList_index][totalMethod[objectArrayList_index]] = i;
                                break;
                            }
                        }
                    }
                    objectMethodVector[objectArrayList_index] = (methodVector);
                    objectTypeVector[objectArrayList_index] = (typeVector);
                }

                if (resultSet.next())
                {
                    arrayList = new ArrayList();
                    for (objectArrayList_index = 0; objectArrayList_index < objectArrayList_len; objectArrayList_index++)
                    {
                        for (int i = 0; i <= totalMethod[objectArrayList_index]; i++)
                        {
                            //System.out.println(objectMethodVector[objectArrayList_index].get(i));
                            objectMethodVector[objectArrayList_index].get(i).invoke(objectArrayList.get(objectArrayList_index), getObject(indexes[objectArrayList_index][i], objectTypeVector[objectArrayList_index].get(i), resultSet));
                        }
                        arrayList.add(objectArrayList.get(objectArrayList_index));
                    }
                }
                while (resultSet.next())
                {
                    for (objectArrayList_index = 0; objectArrayList_index < objectArrayList_len; objectArrayList_index++)
                    {
                        for (int i = 0; i <= totalMethod[objectArrayList_index]; i++)
                        {
                            objectMethodVector[objectArrayList_index].get(i).invoke(objectArrayList.get(objectArrayList_index), getObject(indexes[objectArrayList_index][i], objectTypeVector[objectArrayList_index].get(i), resultSet));
                        }
                        arrayList.add(objectArrayList.get(objectArrayList_index));
                    }
                }
            }
        }
    }
    catch (Exception e)
    {
        e.printStackTrace();
    }
} 

只需复制粘贴此代码调用方法copyFromResultSet(class,ResultSet) 首先传递两个参数是类名,第二个是结果集。

我确信这是正常工作