Catturare la USER ID corrente su Win2K

di il
2 risposte

Catturare la USER ID corrente su Win2K

Salve a tutti, sono disperata...
Avrei bisogno di realizzare un' applicazione JAVA in grado di catturare l' identita' dell' utente windows 2000 che in quel momento sta eseguendo l'applicazione stessa (in pratica la User-Id con la quale si e' loggato).
Esiste un opportuna API che permetta cio'?
Ogni consiglio e' per me prezioso, grazie.
Alessandra.

2 Risposte

  • Re: Catturare la USER ID corrente su Win2K

    Ciao, ti posto la seguente API (in ogni caso e per maggiori informazioni, visto che le funzioni relative sono parecchie, ti rimando alla documentazione che trovi sulla MSDN, sia sul CD che online all'indirizzo http://msdn.microsoft.co nella sezione library...

    Non sto a tradurre, visto che è una funzione abbastanza semplice

    <b>GetUserName</b>
    The GetUserName function retrieves the user name of the current thread. This is the name of the user currently logged onto the system.

    BOOL GetUserName(
    LPTSTR lpBuffer, // address of name buffer
    LPDWORD nSize // address of size of name buffer
    );

    <b>Parameters</b>

    <b>lpBuffer</b>
    Pointer to the buffer to receive the null-terminated string containing the user's logon name. If this buffer is not large enough to contain the entire user name, the function fails. A buffer size of (UNLEN + 1) characters will hold the maximum length user name including the terminating null character. UNLEN is defined in LMCONS.H.

    <b>nSize</b>
    Pointer to a DWORD variable that, on input, specifies the maximum size, in characters, of the buffer specified by the lpBuffer parameter. If the function succeeds, the variable receives the number of characters copied to the buffer. If the buffer is not large enough, the function fails and the variable receives the required buffer size, in characters, including the terminating null character.

    <b>Return Values</b>
    If the function succeeds, the return value is nonzero, and the variable pointed to by nSize contains the number of characters copied to the buffer specified by lpBuffer, including the terminating null character.
    If the function fails, the return value is zero. To get extended error information, callGetLastError.

    <b>Remarks</b>
    If the current thread is impersonating another client, the GetUserName function returns the user name of the client that the thread is impersonating.

    <b>QuickInfo</b>
    Windows NT: Requires version 3.1 or later.
    Windows: Requires Windows 95 or later.
    Windows CE: Unsupported.
    Header: Declared in winbase.h.
    Import Library: Use advapi32.lib.
    Unicode: Implemented as Unicode and ANSI versions on Windows NT.

    Ciaociao

    Venite a visitarci qui: http://spazioinwind.libero.it/bottomapsoftware
  • Re: Catturare la USER ID corrente su Win2K

    PS: Ovviamente la funzione che ho scritto deriva dalle API standard di windows, accessibili comodamente con MSVC++, per quanto riguarda l'accessibilità da parte di Java alle API di sistema dovrai trovare documentazione appropriata...

    Riciaociao

    Venite a visitarci qui: http://spazioinwind.libero.it/bottomapsoftware
Devi accedere o registrarti per scrivere nel forum
2 risposte