博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Tips on converting LotusScript to Java
阅读量:6333 次
发布时间:2019-06-22

本文共 1133 字,大约阅读时间需要 3 分钟。

  • Use "null" for checking empty Notes
    objects, the LotusScript NOTHING constant doesn't exist.
  • LotusScript properties are Java
    methods. To convert for java, prefix all property names with Get or Set, and
    append a set of parenthesis
    ,
    (Wayne added: however, property names preceded with
    "Is" or
    "Has" seem not necessarily prefixed with get or set)
    .
eg., LotusScript
db.Title
becomes
db.
get
Title()
LotusScript
acl.Uniformaccess =
True
becomes
acl.
set
UniformAccess(true)
  • You can't use the "extended class
    syntax".
e.g.,
LotusScript
doc.Subject = "Status
Report
"
, is Java
doc.appendItemValue("Subject","Status Report").
  • Use the following technique to get
    the array returned from getItemValue.
vector =
doc.getItemValue("Field1"); // vector is an array of objects
(String)vector.elementAt(0); // returns the
first array element as a string
This has
been updated to--
LotusScript:
doc.GetItemValue("CustID")(0)
:: Java:
doc.getItemValueString("CustID") - Jamie
  • What do you use for constants? Eg.,
    ACL Level names?
  • Java is case sensitive.
e.g.,
doc.
s
ave(true,false)
<- wrong,
doc.
S
ave(true,false)
<-right
T
rue
<-wrong,
t
rue
<-right

转载地址:http://aiioa.baihongyu.com/

你可能感兴趣的文章
低版本mybatis不能用PageHeper插件的时候用这个分页
查看>>
javaweb使用自定义id,快速编码与生成ID
查看>>
[leetcode] Add Two Numbers
查看>>
elasticsearch suggest 的几种使用-completion 的基本 使用
查看>>
04-【MongoDB入门教程】mongo命令行
查看>>
字符串与整数之间的转换
查看>>
断点传输HTTP和URL协议
查看>>
redis 数据类型详解 以及 redis适用场景场合
查看>>
mysql服务器的主从配置
查看>>
巧用AJAX技术,通过updatePanel控件实现局部刷新
查看>>
20140420技术交流活动总结
查看>>
SaltStack配置salt-api
查看>>
各种情况下block的类型
查看>>
ThinkPHP 3.2.x 集成极光推送指北
查看>>
js作用域链
查看>>
java中如何选择Collection Class--java线程(第3版)
查看>>
为运维人员插上腾飞更远的翅膀!
查看>>
Word 2003中编辑标记与格式标记大讨论
查看>>
从国内向海外转移域名经验谈
查看>>
浅谈apache与tomact的整合
查看>>