本文整理汇总了Java中lotus.domino.Item.getValueString方法的典型用法代码示例。如果您正苦于以下问题:Java Item.getValueString方法的具体用法?Java Item.getValueString怎么用?Java Item.getValueString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类lotus.domino.Item
的用法示例。
在下文中一共展示了Item.getValueString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: processItem
import lotus.domino.Item; //导入方法依赖的package包/类
private void processItem(Item item, String fieldName){
Vector<?> values = null;
try{
//get out if item.type is unknown
if("$FILE".equals(item.getName())){
return;
}
values = item.getValues();
String check = item.getValueString();
if(check==null || "".equals(check) || fieldName.toLowerCase().contains("password")){
return;
}
if(values!=null && !values.isEmpty()){
if (values.size()==1){
Object value =values.elementAt(0);
if(value instanceof DateTime){
DateTime dateTime = (DateTime) value;
this.put(fieldName,dateTime.toJavaDate());
}else if(value instanceof String){
String data = (String) value;
this.put(fieldName, data.trim());
}else{
this.put(fieldName, values.elementAt(0));
}
}else if(values.size() > 1){
//if the values are of date time we need to convert.
if(values.elementAt(0) instanceof DateTime){
List<Date> list = this.convertToDateList(values);
this.put(fieldName,list);
}else{
this.put(fieldName,values);
}
}
}
}catch(Exception n){
logger.log(Level.SEVERE,"DocumentWrapper.field." + fieldName + " exception");
logger.log(Level.SEVERE,null, n);
}
}