web-dev-qa-db-ja.com

ブーストを使用して日時を文字列にフォーマットする方法は?

ブーストを使用して日付/時刻を文字列にフォーマットしたい。

現在の日付/時刻から:

ptime now = second_clock::universal_time();

そして、この形式の日付/時刻を含むwstringで終わります:

%Y%m%d_%H%M%S

これを達成するためのコードを見せていただけますか?ありがとう。

25
mackenir

それが価値があるもののために、これは私がこれを行うために書いた関数です:

#include "boost/date_time/posix_time/posix_time.hpp"
#include <iostream>
#include <sstream>

std::wstring FormatTime(boost::posix_time::ptime now)
{
  using namespace boost::posix_time;
  static std::locale loc(std::wcout.getloc(),
                         new wtime_facet(L"%Y%m%d_%H%M%S"));

  std::basic_stringstream<wchar_t> wss;
  wss.imbue(loc);
  wss << now;
  return wss.str();
}

int main() {
  using namespace boost::posix_time;
  ptime now = second_clock::universal_time();

  std::wstring ws(FormatTime(now));
  std::wcout << ws << std::endl;
  sleep(2);
  now = second_clock::universal_time();
  ws = FormatTime(now);
  std::wcout << ws << std::endl;

}

このプログラムの出力は次のとおりです。

20111130_142732
20111130_142734

私はこれらのリンクが役に立ったと感じました:

30
Robᵩ
// create your date
boost::gregorian::date d(2009, 1, 7); 

// create your formatting
boost::gregorian::date_facet *df = new boost::gregorian::date_facet("%Y%m%d_%H%M%S"); 

// set your formatting
ostringstream is;
is.imbue(std::locale(is.getloc(), df));
is << d << endl;

// get string
cout << "output :" << is.str() << endl;
2
Validus Oculus