我想知道如何使用 Boost 和 C++ 准确计算纽约的当地时间,即使我在位于不同国家/地区的服务器上运行代码?
我试过的
我曾尝试查看Boost C++ 示例,但似乎找不到任何东西。
对于希望查看 tz 数据库正在使用的 OP 以及 Matt Johnson。
#include "boost/date_time/posix_time/posix_time.hpp"
using namespace boost::posix_time;
using namespace boost::gregorian;
#include "boost/date_time/local_time/local_time.hpp"
// form an empty database
boost::local_time::tz_database tz_database;
// load the time zone database which comes with boost
tz_database.load_from_file( "../../boost/libs/date_time/data/date_time_zonespec.csv" );
// obtain a specific time zone from the database
boost::local_time::time_zone_ptr tzNewYork;
tzNewYork = tz_database.time_zone_from_region("America/New_York");
// example universal/local conversion (from boost example code)
// ptime now = boost::posix_time::microsec_clock::universal_time();
ptime now(date(2004,Nov,5), hours(10));
boost::local_time::local_date_time ny(now, tzNewYork );
ny.utc_time(); // 10am 2004-Nov-5
ny.local_time(); // 5am 2004-Nov-5
首先,您需要获取 UTC 时间:您可以使用boost::posix_time::second_clock::universal_time()
.
从您刚刚提供的链接中:
//eastern timezone is utc-5
typedef boost::date_time::local_adjustor<ptime, -5, us_dst> us_eastern;
// ...
ptime t3 = us_eastern::utc_to_local(t2);//back should be the same
std::cout << to_simple_string(t2) << " UTC is "
<< to_simple_string(t3) << " New York time "
<< "\n\n";
要将其转换为纽约时间,只需为您的时区定义一个 local_adjustor,然后utc_to_local
从中调用。