如何使用 Java 和 JNA 写入 windows 事件日志

How to write to windows eventlog using Java and JNA

我正在寻找一种使用 JNA 写入 windows 事件日志的方法。我可以使用 log4J2 和 Log4JNA 库写入 windows 事件日志。

但是,我想直接使用 JNA 编写,但我不愿意添加 Log4JNA 所需的 dll 文件。

我目前正在查看 Advapi32 和 Advapi32Util,但找不到任何写入事件日志的方法。

如何做到这一点?

您需要的 WINAPI 调用是 ReportEvent

这在 Advapi32 中的 JNA 中用户贡献的平台映射中进行了映射。

Advapi32Test class 包含 code demonstrating writing an event。我在下面摘录了部分测试代码:

public void testReportEvent() {
    String applicationEventLog = "SYSTEM\CurrentControlSet\Services\EventLog\Application";
    String jnaEventSource = "JNADevEventSource";
    String jnaEventSourceRegistryPath = applicationEventLog + "\" + jnaEventSource;
    // ignore test if not able to create key (need to be administrator to do this).
    try {
        final boolean keyCreated = Advapi32Util.registryCreateKey(WinReg.HKEY_LOCAL_MACHINE, jnaEventSourceRegistryPath);
        if (!keyCreated) {
            return;
        }
    } catch (Win32Exception e) {
        return;
    }

    HANDLE h = Advapi32.INSTANCE.RegisterEventSource(null, jnaEventSource);
    String s[] = {"JNA", "Event"};
    Memory m = new Memory(4);
    m.setByte(0, (byte) 1);
    m.setByte(1, (byte) 2);
    m.setByte(2, (byte) 3);
    m.setByte(3, (byte) 4);
    int eventId = 123 + 0x40000000;
    Advapi32.INSTANCE.ReportEvent(h, WinNT.EVENTLOG_ERROR_TYPE, 0, eventId, null, 2, 4, s, m);
    Advapi32Util.registryDeleteKey(WinReg.HKEY_LOCAL_MACHINE, jnaEventSourceRegistryPath);
}