通常基于EO生存的vo拖入页面生存的 selectOneChoice 会选择 display 名称 汉字的属性,那么你想要获得中文汉字对应的主键ID值得话可以这样
1.在页面binding属性中添加vo的那个属性 添加一个attribute 比如vo的主键为 zjid
2.在后台代码中加入以下代码便可获取
FacesContext fc = FacesContext.getCurrentInstance();
String zj =(String)fc.getApplication().evaluateExpressionGet(fc, "#{bindings.Zjid.attributeValue}", Object.class);
其中 "#{bindings.Zjid.attributeValue}", 中间的那个 属性Zjid 就是 页面中 binding 绑定的主键属性 就是你想要获取的主键值
System.out.println(zj)
最后自己打印一下看下效果