0

そのような方法で ptime をフォーマットする必要がありますWed, 21 Jan 2004 19:51:30 GMTブーストでそのようなことを行うにはどうすればよいですか? Expires(したがって、HTTP サーバーと応答ヘッダーのデータ形式のようになりますLast-Modified)Date

4

1 に答える 1

2
#include <locale>
#include <string>
#include <iostream>
#include <sstream>
#include <boost/date_time/posix_time/posix_time.hpp>

std::string current_time_formatted()
{
    namespace bpt = boost::posix_time;

    static char const* const fmt = "%a, %d %b %Y %H:%M:%S GMT";
    std::ostringstream ss;
    // assumes std::cout's locale has been set appropriately for the entire app
    ss.imbue(std::locale(std::cout.getloc(), new bpt::time_facet(fmt)));
    ss << bpt::second_clock::universal_time();
    return ss.str();
}

使用可能な形式フラグの詳細については、日時の入力/出力を参照してください。

于 2011-04-18T01:00:42.867 に答える