查找给定城市的 UTC 偏移量
在 Windows 上的 C++ 中,给定一个城市,比如伦敦、纽约、悉尼或新加坡等。我如何找到每个城市的 UTC 偏移量,即该函数应该能够接受城市名称并返回 UTC 偏移量当前的情况,即考虑夏令时。任何想法如何使用 win32 API 来完成此操作
In C++ on Windows, given a city, lets say london or newyork or sydney or singapore etc.. how do I find the UTC offset for each of them, ie the function should be able to accept a city name and return the UTC offset in the current scenario ie taking into account daylight savings. Any ideas how this can be done using win32 APIs
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您想要一个 API 来搜索 zoneinfo / tz 数据库..?
不知道是否有一个库具有您想要的界面。但自己阅读并搜索并不困难。它只是一个平面文件数据库,每行一条记录的文本。
http://en.wikipedia.org/wiki/Zone.tab
Sounds like you want an API for searching the zoneinfo / tz database..?
Don't know if there is a library with precisely the interface you want. But reading it and searching it yourself would not be difficult. It's just a flat file database, text with one record per line.
http://en.wikipedia.org/wiki/Zone.tab