PowerBuilder Classic、Web 服务和时区
PowerBuilder Classic 是否支持使用时区,特别是在 Web 服务调用方面?我正在寻找类似 .NET 的 DateTimeOffset 类的东西。
Does PowerBuilder Classic have any support for working with time zones, especially in regards to web service calls? I am looking for something like .NET's DateTimeOffset class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道本机支持,但您可以使用系统 API 来解决:
GetTimeOfDayInfo()
(似乎没有记录?来自 kernel32.dll)TIME_OF_DAY_INFO
来自 Lm.h 的结构NetRemoteTOD()
(来自 netapi32.dll)LocalhostTOD()
(也未记录?来自 netapi32.dll)Real 的 Howto 上有一个示例:从服务器获取时间和日期
I am not aware of a native support, but you can work around with the system API:
GetTimeOfDayInfo()
(seems undocumented? from kernel32.dll)TIME_OF_DAY_INFO
struct from Lm.hNetRemoteTOD()
(from netapi32.dll)LocalhostTOD()
(also undocumented? from netapi32.dll)There is an example on the Real's Howto : Get the time and date from a server