Skip navigation links
JNA API 4.4.0
com.sun.jna.platform.win32

Class Kernel32Util

  • All Implemented Interfaces:
    WinDef


    public abstract class Kernel32Util
    extends Object
    implements WinDef
    Kernel32 utility API.
    Author:
    dblock[at]dblock.org, markus[at]headcrashing[dot]eu, Andreas "PAX" Lück, onkelpax-git[at]yahoo.de
    • Constructor Detail

      • Kernel32Util

        public Kernel32Util()
    • Method Detail

      • getComputerName

        public static String getComputerName()
        Get current computer NetBIOS name.
        Returns:
        Netbios name.
      • closeHandleRefs

        public static void closeHandleRefs(WinNT.HANDLEByReference... refs)
        Closes all referenced handles. If an exception is thrown for a specific handle, then it is accumulated until all handles have been closed. If more than one exception occurs, then it is added as a suppressed exception to the first one. Once closed all handles, the accumulated exception (if any) is thrown
        Parameters:
        refs - The references to close
        See Also:
        closeHandleRef(WinNT.HANDLEByReference)
      • closeHandles

        public static void closeHandles(WinNT.HANDLE... handles)
        Invokes closeHandle(WinNT.HANDLE) on each handle. If an exception is thrown for a specific handle, then it is accumulated until all handles have been closed. If more than one exception occurs, then it is added as a suppressed exception to the first one. Once closed all handles, the accumulated exception (if any) is thrown
        Parameters:
        handles - The handles to be closed
        See Also:
        Throwable.getSuppressed()
      • formatMessage

        public static String formatMessage(WinNT.HRESULT code)
        Format a message from an HRESULT.
        Parameters:
        code - HRESULT
        Returns:
        Formatted message.
      • formatMessageFromLastErrorCode

        public static String formatMessageFromLastErrorCode(int code)
        Format a system message from an error code.
        Parameters:
        code - Error code, typically a result of GetLastError.
        Returns:
        Formatted message.
      • getLastErrorMessage

        public static String getLastErrorMessage()
        Returns:
        Obtains the human-readable error message text from the last error that occurred by invocating Kernel32.GetLastError().
      • getTempPath

        public static String getTempPath()
        Return the path designated for temporary files.
        Returns:
        Path.
      • deleteFile

        public static void deleteFile(String filename)
      • getLogicalDriveStrings

        public static List<String> getLogicalDriveStrings()
        Returns valid drives in the system.
        Returns:
        A List of valid drives.
      • getFileAttributes

        public static int getFileAttributes(String fileName)
        Retrieves file system attributes for a specified file or directory.
        Parameters:
        fileName - The name of the file or directory.
        Returns:
        The attributes of the specified file or directory.
      • getFileType

        public static int getFileType(String fileName)
                               throws FileNotFoundException
        Retrieves the result of GetFileType, provided the file exists.
        Parameters:
        fileName - file name
        Returns:
        file type
        Throws:
        FileNotFoundException - if file not found
      • getDriveType

        public static int getDriveType(String rootName)
        Parameters:
        rootName - name of root drive
        Returns:
        One of the WinBase.DRIVE_* constants.
      • getEnvironmentVariable

        public static String getEnvironmentVariable(String name)
        Get the value of an environment variable.
        Parameters:
        name - Name of the environment variable.
        Returns:
        Value of an environment variable.
      • getEnvironmentVariables

        public static Map<String,String> getEnvironmentVariables(Pointer lpszEnvironmentBlock,
                                                                 long offset)
        Parameters:
        lpszEnvironmentBlock - The environment block as received from the GetEnvironmentStrings function
        offset - Offset within the block to parse the data
        Returns:
        A Map of the parsed name=value pairs. Note: if the environment block is null then null is returned instead of an empty map since we want to distinguish between the case that the data block is null and when there are no environment variables (as unlikely as it may be)
      • findEnvironmentStringBlockEntryEnd

        public static long findEnvironmentStringBlockEntryEnd(Pointer lpszEnvironmentBlock,
                                                              long offset,
                                                              boolean asWideChars)
        Parameters:
        lpszEnvironmentBlock - The environment block as received from the GetEnvironmentStrings function
        offset - Offset within the block to look for the entry
        asWideChars - If true then the block contains wchar_t instead of "plain old" chars
        Returns:
        The offset of the first '\0' in the data block starting at the specified offset - can be the start offset itself if empty string.
        See Also:
        isWideCharEnvironmentStringBlock(com.sun.jna.Pointer, long)
      • isWideCharEnvironmentStringBlock

        public static boolean isWideCharEnvironmentStringBlock(Pointer lpszEnvironmentBlock,
                                                               long offset)

        Attempts to determine whether the data block uses wchar_t instead of "plain old" chars. It does that by reading 2 bytes from the specified offset - the character value and its charset indicator - and examining them as follows:

        • If the charset indicator is non-zero then it is assumed to be a "plain old" chars data block. Note: the assumption is that the environment variable name (at least) is ASCII.
        • Otherwise (i.e., zero charset indicator), it is assumed to be a wchar_t
        Note: the code takes into account the ByteOrder even though only ByteOrder.LITTLE_ENDIAN is the likely one
        Parameters:
        lpszEnvironmentBlock - The environment block as received from the GetEnvironmentStrings function
        offset - offset
        Returns:
        true if the block contains wchar_t instead of "plain old" chars
      • getPrivateProfileInt

        public static final int getPrivateProfileInt(String appName,
                                                     String keyName,
                                                     int defaultValue,
                                                     String fileName)
        Retrieves an integer associated with a key in the specified section of an initialization file.
        Parameters:
        appName - The name of the section in the initialization file.
        keyName - The name of the key whose value is to be retrieved. This value is in the form of a string; the Kernel32.GetPrivateProfileInt(java.lang.String, java.lang.String, int, java.lang.String) function converts the string into an integer and returns the integer.
        defaultValue - The default value to return if the key name cannot be found in the initialization file.
        fileName - The name of the initialization file. If this parameter does not contain a full path to the file, the system searches for the file in the Windows directory.
        Returns:
        The retrieved integer, or the default if not found.
      • getPrivateProfileString

        public static final String getPrivateProfileString(String lpAppName,
                                                           String lpKeyName,
                                                           String lpDefault,
                                                           String lpFileName)
        Retrieves a string from the specified section in an initialization file.
        Parameters:
        lpAppName - The name of the section containing the key name. If this parameter is null, the Kernel32.GetPrivateProfileString(java.lang.String, java.lang.String, java.lang.String, char[], com.sun.jna.platform.win32.WinDef.DWORD, java.lang.String) function copies all section names in the file to the supplied buffer.
        lpKeyName - The name of the key whose associated string is to be retrieved. If this parameter is null, all key names in the section specified by the lpAppName parameter are returned.
        lpDefault - A default string. If the lpKeyName key cannot be found in the initialization file, Kernel32.GetPrivateProfileString(java.lang.String, java.lang.String, java.lang.String, char[], com.sun.jna.platform.win32.WinDef.DWORD, java.lang.String) returns the default. If this parameter is null, the default is an empty string, "".

        Avoid specifying a default string with trailing blank characters. The function inserts a null character in the lpReturnedString buffer to strip any trailing blanks.

        lpFileName - The name of the initialization file. If this parameter does not contain a full path to the file, the system searches for the file in the Windows directory.
        Returns:

        If neither lpAppName nor lpKeyName is null and the destination buffer is too small to hold the requested string, the string is truncated.

        If either lpAppName or lpKeyName is null and the destination buffer is too small to hold all the strings, the last string is truncated and followed by two null characters.

        In the event the initialization file specified by lpFileName is not found, or contains invalid values, this function will set errorno with a value of '0x2' (File Not Found). To retrieve extended error information, call Kernel32.GetLastError().

      • writePrivateProfileString

        public static final void writePrivateProfileString(String appName,
                                                           String keyName,
                                                           String string,
                                                           String fileName)
      • getLogicalProcessorInformation

        public static final WinNT.SYSTEM_LOGICAL_PROCESSOR_INFORMATION[] getLogicalProcessorInformation()
        Convenience method to get the processor information. Takes care of auto-growing the array.
        Returns:
        the array of processor information.
      • getPrivateProfileSection

        public static final String[] getPrivateProfileSection(String appName,
                                                              String fileName)
        Retrieves all the keys and values for the specified section of an initialization file.

        Each string has the following format: key=string.

        This operation is atomic; no updates to the specified initialization file are allowed while this method is executed.

        Parameters:
        appName - The name of the section in the initialization file.
        fileName - The name of the initialization file. If this parameter does not contain a full path to the file, the system searches for the file in the Windows directory.
        Returns:
        The key name and value pairs associated with the named section.
      • getPrivateProfileSectionNames

        public static final String[] getPrivateProfileSectionNames(String fileName)
        Retrieves the names of all sections in an initialization file.

        This operation is atomic; no updates to the initialization file are allowed while this method is executed.

        Parameters:
        fileName - The name of the initialization file. If this parameter is NULL, the function searches the Win.ini file. If this parameter does not contain a full path to the file, the system searches for the file in the Windows directory.
        Returns:
        the section names associated with the named file.
      • writePrivateProfileSection

        public static final void writePrivateProfileSection(String appName,
                                                            String[] strings,
                                                            String fileName)
        Parameters:
        appName - The name of the section in which data is written. This section name is typically the name of the calling application.
        strings - The new key names and associated values that are to be written to the named section. Each entry must be of the form key=value.
        fileName - The name of the initialization file. If this parameter does not contain a full path for the file, the function searches the Windows directory for the file. If the file does not exist and lpFileName does not contain a full path, the function creates the file in the Windows directory.
      • queryDosDevice

        public static final List<String> queryDosDevice(String lpszDeviceName,
                                                        int maxTargetSize)
        Invokes the Kernel32.QueryDosDevice(String, char[], int) method and parses the result
        Parameters:
        lpszDeviceName - The device name
        maxTargetSize - The work buffer size to use for the query
        Returns:
        The parsed result
      • QueryFullProcessImageName

        public static final String QueryFullProcessImageName(WinNT.HANDLE hProcess,
                                                             int dwFlags)
        This function retrieves the full path of the executable file of a given process.
        Parameters:
        hProcess - Handle for the running process
        dwFlags - 0 - The name should use the Win32 path format. 1(WinNT.PROCESS_NAME_NATIVE) - The name should use the native system path format.
        Returns:
        the full path of the process's executable file of null if failed. To get extended error information, call GetLastError.
      • getResource

        public static byte[] getResource(String path,
                                         String type,
                                         String name)
        Gets the specified resource out of the specified executable file
        Parameters:
        path - The path to the executable file
        type - The type of the resource (either a type name or type ID is allowed)
        name - The name or ID of the resource
        Returns:
        The resource bytes, or null if no such resource exists.
        Throws:
        IllegalStateException - if the call to LockResource fails
      • getResourceNames

        public static Map<String,List<String>> getResourceNames(String path)
        Gets a list of all resources from the specified executable file
        Parameters:
        path - The path to the executable file
        Returns:
        A map of resource type name/ID => resources.
        A map key + a single list item + the path to the executable can be handed off to getResource() to actually get the resource.
      • getModules

        public static List<Tlhelp32.MODULEENTRY32W> getModules(int processID)
        Returns all the executable modules for a given process ID.
        Parameters:
        processID - The process ID to get executable modules for
        Returns:
        All the modules in the process.
JNA API 4.4.0

Copyright © 2007-2016 Timothy Wall. All Rights Reserved.