Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (WinAPI, Konsole) » System Date and Time

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
08.07.2008, 10:33 Uhr
~maslensa
Gast


Hallo

Ich möchte so eine Ausdruck mit c++ code

Date:Thu,12 May 2008 20:34:12:234 GMT

Ich muss system Datum und Zeit so eine Form nehmen.

danke für die Hilfe.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
08.07.2008, 15:23 Uhr
CppProgrammer



Ungefähr so.

C++:
#include <iostream>
#include <string>
#include <time.h>
using namespace std;

string formatTime(const char *format, time_t rawtime=NULL)
{
    struct tm *timeinfo;
    char buffer[80];

    if(!rawtime)
        time(&rawtime);
    timeinfo = localtime(&rawtime);

    strftime(buffer, 80, format, timeinfo);

    return buffer;
}

int main()
{    
    cout << formatTime("%a, %d %B %Y %H:%M:%S %Z") << endl;
    
    return 0;
}

 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
09.07.2008, 09:34 Uhr
~maslensa
Gast


Danke dir




Zitat von CppProgrammer:
Ungefähr so.

C++:
#include <iostream>
#include <string>
#include <time.h>
using namespace std;

string formatTime(const char *format, time_t rawtime=NULL)
{
    struct tm *timeinfo;
    char buffer[80];

    if(!rawtime)
        time(&rawtime);
    timeinfo = localtime(&rawtime);

    strftime(buffer, 80, format, timeinfo);

    return buffer;
}

int main()
{    
    cout << formatTime("%a, %d %B %Y %H:%M:%S %Z") << endl;
    
    return 0;
}



 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
10.07.2008, 09:48 Uhr
~maslensa
Gast


Hallo

ich habe noch eine Frage. Es funktioniert super . Wenn ich das ausführe kriege ich , was ich will aber in Europa Standart Time.

wie kann ich in GMT ? was muss ich ändern .

danke für die Hilfe .








Zitat von ~maslensa:
Danke dir



[quote CppProgrammer]Ungefähr so.

C++:
#include <iostream>
#include <string>
#include <time.h>
using namespace std;

string formatTime(const char *format, time_t rawtime=NULL)
{
    struct tm *timeinfo;
    char buffer[80];

    if(!rawtime)
        time(&rawtime);
    timeinfo = localtime(&rawtime);

    strftime(buffer, 80, format, timeinfo);

    return buffer;
}

int main()
{    
    cout << formatTime("%a, %d %B %Y %H:%M:%S %Z") << endl;
    
    return 0;
}



[/quote]
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
10.07.2008, 10:06 Uhr
ao

(Operator)


Statt localtime gmtime benutzen?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
005
10.07.2008, 12:55 Uhr
~maslensa
Gast



Zitat von ao:
Statt localtime gmtime benutzen?



JA , ich wollte so eine ausdruck haben


thu, 12 mai 2008 12:34:3444 GMT
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (WinAPI, Konsole) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: