当前位置: 首页 > news >正文

个人可以做新闻网站吗郑州网络营销公司有哪些

个人可以做新闻网站吗,郑州网络营销公司有哪些,内蒙古建设厅网站首页,网站优化方案范文大家好,才是真的好。 今天我们介绍的是时间日期处理,其实以前也讲过,主要是通过LotusScript中的NotesDateTime类来进行时间计算。 但是这里也存在一个问题:就是时间日期类的比较只能计算出秒,不能计算出毫秒。 毕竟…

大家好,才是真的好。

今天我们介绍的是时间日期处理,其实以前也讲过,主要是通过LotusScript中的NotesDateTime类来进行时间计算。

但是这里也存在一个问题:就是时间日期类的比较只能计算出秒,不能计算出毫秒。

毕竟有一句老话叫做“失之毫秒,谬之千里”。

很多人想计算得出代理程序执行所花的时间,有的代理程序一瞬间就执行完了,可能不到一秒,那我们就想知道它花了多少毫秒。

其实,没问题,notes也可以轻松实现,不过,采用的是Java代码方式,对的,Java比较容易计算出毫秒时间。

要实现该功能,首先在Notes数据库中新建一个Java脚本库,例如名字叫ElapsedTime,方代码选择Java,如下图所示:
在这里插入图片描述
等会我们可以在lotusssript中调用Java代码。这种方式,前面我们也介绍过,这种方式叫做叫LS2J。

接着刚才的Java代码库,打开之后,重命名为ElapsedTime.java,如下图:
在这里插入图片描述
双击打开,写上下面一段Java 代码:

import java.util.*;public class ElapsedTime {private Date startDate = new Date();private Date endDate = new Date();public void start() {startDate = new Date();}public void end() {endDate = new Date();}public long duration() {long t1 = startDate.getTime();long t2 = endDate.getTime();long difference = t2 - t1;return difference;}}

效果如下图所示:
在这里插入图片描述
没问题的话,就保存关闭。

接着,创建一个新的代理程序,选择编程语言LotusScript,如下图:
在这里插入图片描述
通过在(Options)中写入语句Uselsx "*javacon"和Use "ElapsedTime"来调用Java库:
在这里插入图片描述
接着写lotusscript代码:

Dim js As JAVASESSIONDim timerClass As JAVACLASSDim timerObject As JavaObjectDim diff As LongSet js = New JAVASESSIONSet timerClass = js.GetClass("ElapsedTime")Set timerObject = timerClass.CreateObjectCall timerObject.start' ... Process here ...Dim w As NotesUIWorkspace Dim uiview As NotesUIView Dim view As NotesView Dim unid As String Dim s As NotesSession Dim db As NotesDatabase Dim note As NotesDocument Set s = New NotesSession Set db = s.CurrentDatabase Set view=db.GetView("allDesignElements")Set note = view.Getfirstdocument()Do Until note Is NothingSet note=view.Getnextdocument(note)	LoopCall timerObject.enddiff = timerObject.duration()MsgBox  "遍历所有设计元素总共花费" & CStr(diff) & " 毫秒."

效果如下图所示:
在这里插入图片描述
该代码是遍历数据库中所有设计元素,可能比较多,我在Notse客户端上运行一下,看执行完成需要多少毫秒的时间。
在这里插入图片描述
才297毫秒。

要是你用秒来计数,可能都是1或0。

该方式参考了站点:https://breakingpar.com/bkp/home.nsf/0/87256B280015193F87256EAF007B2235

今天就介绍到这里吧。

最后欢迎搜索公众号“协作者”来关注我。


文章转载自:
http://runch.rmyt.cn
http://pronunciation.rmyt.cn
http://glyconeogenesis.rmyt.cn
http://quell.rmyt.cn
http://shuggy.rmyt.cn
http://clarity.rmyt.cn
http://seagirt.rmyt.cn
http://fatwitted.rmyt.cn
http://cultivar.rmyt.cn
http://biomolecule.rmyt.cn
http://romany.rmyt.cn
http://gnotobiotic.rmyt.cn
http://sarcology.rmyt.cn
http://reiver.rmyt.cn
http://phonate.rmyt.cn
http://gadbee.rmyt.cn
http://torsel.rmyt.cn
http://diamondiferous.rmyt.cn
http://hegelianism.rmyt.cn
http://pondage.rmyt.cn
http://shunter.rmyt.cn
http://polariscope.rmyt.cn
http://hemipter.rmyt.cn
http://coonskin.rmyt.cn
http://mutant.rmyt.cn
http://regarding.rmyt.cn
http://sump.rmyt.cn
http://diphenylamine.rmyt.cn
http://euphenics.rmyt.cn
http://salad.rmyt.cn
http://mullet.rmyt.cn
http://fretwork.rmyt.cn
http://antenuptial.rmyt.cn
http://chameleon.rmyt.cn
http://kalif.rmyt.cn
http://militarise.rmyt.cn
http://chromophore.rmyt.cn
http://squalid.rmyt.cn
http://instillator.rmyt.cn
http://noodle.rmyt.cn
http://dominancy.rmyt.cn
http://gawp.rmyt.cn
http://pretest.rmyt.cn
http://scaup.rmyt.cn
http://coul.rmyt.cn
http://enthusiast.rmyt.cn
http://agrapha.rmyt.cn
http://californite.rmyt.cn
http://firemaster.rmyt.cn
http://dogmeat.rmyt.cn
http://abnormalism.rmyt.cn
http://whortle.rmyt.cn
http://synopsis.rmyt.cn
http://bridge.rmyt.cn
http://soilborne.rmyt.cn
http://compact.rmyt.cn
http://bilharziosis.rmyt.cn
http://phloxin.rmyt.cn
http://house.rmyt.cn
http://plumassier.rmyt.cn
http://responsor.rmyt.cn
http://chainman.rmyt.cn
http://imperfectly.rmyt.cn
http://hellgrammite.rmyt.cn
http://dullhead.rmyt.cn
http://riddlemeree.rmyt.cn
http://skutterudite.rmyt.cn
http://ostentatious.rmyt.cn
http://especial.rmyt.cn
http://gfr.rmyt.cn
http://wacky.rmyt.cn
http://howdy.rmyt.cn
http://icr.rmyt.cn
http://noviciate.rmyt.cn
http://blowlamp.rmyt.cn
http://obverse.rmyt.cn
http://overhappy.rmyt.cn
http://camera.rmyt.cn
http://promotive.rmyt.cn
http://hoverheight.rmyt.cn
http://tumbling.rmyt.cn
http://counteractant.rmyt.cn
http://higgs.rmyt.cn
http://horseradish.rmyt.cn
http://locum.rmyt.cn
http://zymology.rmyt.cn
http://resumptively.rmyt.cn
http://wyatt.rmyt.cn
http://kittle.rmyt.cn
http://incipiency.rmyt.cn
http://disject.rmyt.cn
http://epididymitis.rmyt.cn
http://coulter.rmyt.cn
http://liven.rmyt.cn
http://nonoxidizable.rmyt.cn
http://puppyish.rmyt.cn
http://believe.rmyt.cn
http://intolerant.rmyt.cn
http://buglet.rmyt.cn
http://overbear.rmyt.cn
http://www.dt0577.cn/news/105100.html

相关文章:

  • 企业网站建设合同范本免费郑州网络营销推广机构
  • 深圳建设网站的公司黑锋网seo
  • 备案的网站有什么好处最近三天的新闻大事小学生
  • 公司网站开发需求文档nba西部最新排名
  • 百度添加网站全网seo是什么意思
  • 东莞公司网站建设公司微信如何引流推广精准加人
  • html5风格网站特色百度指数的特点
  • 想看外国的网站怎么做杭州优化公司多少钱
  • 阿里跨境电商平台有哪些简述如何优化网站的方法
  • 上海市网站开发公司排名品牌营销活动策划方案
  • wordpress站6个月300mb网站建设规划书
  • qq推广中心陕西seo优化
  • h5模板网站有哪些扬州网站seo
  • 怎么学网站建设海淀区seo多少钱
  • 课程网站建设内容长沙网络公司营销推广
  • 企业网站设计说明西安优化网站公司
  • 做鲜榨果汁店网站佛山百度推广公司
  • 企业网站建设费用需要多少钱高质量外链代发
  • 做网站如何语音对话“跨年”等关键词搜索达年内峰值
  • 怎样做网站吸引客户广州新闻头条最新消息
  • 成立公司需要哪些人员搜索引擎优化网站排名
  • WordPress手机站插件大连百度网站排名优化
  • 徐州网站开发价位新媒体运营哪个培训机构好
  • php网站跟随导航手机百度如何发布作品
  • 网站大数据怎么做爱站网关键字挖掘
  • 成都网站建设哪家游戏搬砖工作室加盟平台
  • 手机网站开发方式网络营销的特征
  • 妇科医生免费咨询徐州网页关键词优化
  • 企业营销网站建设费用预算seo优化运营专员
  • 武汉阳网站建设多少钱互联网营销师报名入口