0

hsql データベースから特定の値を読み込もうとしていますが、これらの値はキーと値を持つマップとして返​​されます。これらのマップ値を受け入れて反復処理し、条件に基づいて特定の値を取得するメソッドがもう 1 つあります。その後、これらの値をすべてリストに追加します。私にとっては、条件と最初のメソッドは正常に機能していますが、値をリストに追加しているときにクラスキャスト例外に直面しています

テーブルから値を読み取るメソッド:

List<EntityMap> sample = session.createQuery(" FROM EntityMap order by if.ifName").list();
for (Iterator<EntityMap> iterator = sample.iterator(); iterator.hasNext();) {
    entityMap = (EntityMap) iterator.next();
    if (IfName != entityMap.getIf().getIfName().toString()) {
        IfName = entityMap.getIf().getIfName().toString();
        entitymapobject = new ArrayList<EntityMap>();
    }
    entitymapobject.add(entityMap);
    EntityMaplist.put(entityMap.getIf().getIfName(),entitymapobject);
}
tx.commit();

このメソッドはマップを返し、データベースからフェッチされた値を持っています。その後、いくつかの条件に基づいて特定の値を抽出しようとしています。これで、上記のメソッドを呼び出して、それを繰り返しています

proertyMap = listPROPERTNAMES();
System.out.println("inside loadproperty");
for (Iterator<Integer> itr1 = srcEntityIDList.iterator(); itr1.hasNext();) {
    Integer aInteger = itr1.next();
    for (Map.Entry<Long, List<PropertyMap>> entry : proertyMap.entrySet()) {
        System.out.println(aInteger);
        System.out.println(entry.getKey());
        Long aLong = entry.getKey();
        if  (aLong.equals(Long.valueOf(aInteger)))  {
            System.out.println("values are equal");
            trgtPropNameList.add(( (PropertyMap) entry.getValue()).getTgtpropnm());
          }
      }
    }
    return trgtPropNameList;

    if (tx != null)
        tx.rollback();
        e.printStackTrace();
    } finally {
        session.close();
    }
    return EntityMaplist;
}

ここで、値をリスト (trgtPropNameList) に追加しようとしているときに、クラス キャスト例外が発生します。セッターとゲッターメソッドを持つ私のPOJOクラスは

public class PropertyMap implements java.io.Serializable {

    private PropertyMapId id;
    private EntityMap entityMap;
    private String tgtpropnm;
    private String splitrule;
    private String combinerule;
    private String createdby;
    private Date createdon;

    public PropertyMap() {
    }

    public PropertyMap(PropertyMapId id, EntityMap entityMap) {
        this.id = id;
        this.entityMap = entityMap;
    }

    public PropertyMap(PropertyMapId id, EntityMap entityMap, String tgtpropnm,
            String splitrule, String combinerule, String createdby,
            Date createdon) {
        this.id = id;
        this.entityMap = entityMap;
        this.tgtpropnm = tgtpropnm;
        this.splitrule = splitrule;
        this.combinerule = combinerule;
        this.createdby = createdby;
        this.createdon = createdon;
    }

    public PropertyMapId getId() {
        return this.id;
    }

    public void setId(PropertyMapId id) {
        this.id = id;
    }

    public EntityMap getEntityMap() {
        return this.entityMap;
    }

    public void setEntityMap(EntityMap entityMap) {
        this.entityMap = entityMap;
    }

    public String getTgtpropnm() {
        return this.tgtpropnm;
    }

    public void setTgtpropnm(String tgtpropnm) {
        this.tgtpropnm = tgtpropnm;
    }

    public String getSplitrule() {
        return this.splitrule;
    }

    public void setSplitrule(String splitrule) {
        this.splitrule = splitrule;
    }

    public String getCombinerule() {
        return this.combinerule;
    }

    public void setCombinerule(String combinerule) {
        this.combinerule = combinerule;
    }

    public String getCreatedby() {
        return this.createdby;
    }

    public void setCreatedby(String createdby) {
        this.createdby = createdby;
    }

    public Date getCreatedon() {
        return this.createdon;
    }

    public void setCreatedon(Date createdon) {
        this.createdon = createdon;
    }
}

誰でもここで私を助けてもらえますか?

4

3 に答える 3

2

entry.getValue()型のオブジェクトでありList<PropertyMap>、そうではないPropertyMap

于 2013-03-05T13:50:40.577 に答える
0

キャストできない場合は、新しいものを作成して入力するだけです。

于 2013-03-05T13:47:02.500 に答える
0

行を変更する

trgtPropNameList.add(( (PropertyMap) entry.getValue()).getTgtpropnm());

for(PropertyMap map : entry.getValue(){
    trgtPropNameList.add(((PropertyMap)map).getTgtpropnm());
}

キャストの問題を修正する必要があります。

于 2013-03-05T13:56:01.630 に答える