HashTable 你把ResultSet存入HashTable
例如:Hashtable items = new Hashtable();
        for (int i = 1; i <= columncount; i++) {
          items.put(rs.getMetaData().getColumnName(i).toLowerCase(),
                    rs.getObject(i) == null ? "" : rs.getString(i).toString());
        }