我正在学习CMIS和Filenet P8。 使用库apache-chemistry for CMIS。 我在ChoiceList中遇到问题。
选择列表与PropertyDefination相关联。 我试图显示与每个PropertyDefinition相关的选项列表。
ItemIterable<ObjectType> v = session.getTypeChildren("cmis:document", true);
Iterator<ObjectType> i = v.iterator();
while(i.hasNext()){
ObjectType a = i.next();
if(a!=null)
{
Map<String, PropertyDefinition<?>> d = a.getPropertyDefinitions();
Iterator<String> itr = d.keySet().iterator();
while(itr.hasNext()){
String key = itr.next().toString();
if ((Boolean.FALSE.equals(d.get(key).isInherited()))) {
PropertyDefinition<?> value = d.get(key);
// Choice List
List<?> ch = value.getChoices();
System.out.println("value " + value.getDisplayName()+ " " + " choice list " + ch.toString());
for (Object object : ch) {
System.out.println(object.toString());
}
Customproperties properties = new Customproperties(value.getDisplayName(),value.getPropertyType().toString(),value.getCardinality().name(),value.isRequired());
customPropertyList1.add(properties);
}
}
}
}
输出
value Document Title choice list []
value From choice list []
value To choice list []
value Cc choice list []
value Subject choice list [[extensions=null], [extensions=null]]
[extensions=null]
[extensions=null]
value Sent On choice list []
value Received On choice list []
value Link IDs choice list []
//对于propertyDefination主题,有一个选项列表,但它显示为null ..我无法正确检索选择列表。
我该如何解决这个问题?
答案 0 :(得分:2)
List<Choice> ch = value.getChoices();
for (Choice Choice : ch) {
System.out.println(choice.getDisplayName());
}
答案 1 :(得分:1)
您应该将PropertyDefinition转换为正确的子类。 您可以在Converter.java中看到他们是如何做到的(参见apache化学的来源,他们是如何做到的)。
此致 魔术