一个方法调用问题的困惑


在类A中写了一个方法:
public void moveContact(Contact c){
try {
String name = "好友";
List list = getHibernateTemplate().find(
"from ContactGroup c where c.name="+name);
if(list!=null&&list.size()!=0){
ContactGroup contactGroup = (ContactGroup) list.get(0);
c.setContactGroup(contactGroup);
this.attachDirty(c);
log.info("移动成功");
}
//log.debug("attach successful");
} catch (RuntimeException re) {
log.error("attach failed", re);
throw re;
}
}
在类A中测试 正确.  现在我在类B中调用该方法,结果if语句进不去。
测试发现:  String name ="";  name为汉字时,在类A中正确,在类B中调用会查不到结果;name为英文时,在类A和类B中都正确
现在我需要name为汉字,并且要在类B中调用,怎么保证它正确?  是不是字符出问题了,可是为什么在类A中是正确的?    

你可能感兴趣的:(C++,c,C#)