如何使用 dll 在 Java 端声明的 log4j 记录器

发布于 2024-11-16 00:52:17 字数 81 浏览 0 评论 0原文

我们在 java 项目中使用带有 JNA 的 dll。我们希望 C 代码也记录到我们的 log4j 日志文件中,有没有一种简单的方法可以做到这一点?

We are using a dll with JNA in our java project. We would like the C code to also log to our log4j log files, is there an easy way of doing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

勿忘初心 2024-11-23 00:52:17

真的不容易。我可以想到几种

  • 在 C 代码中调用 Java 程序的方法,该程序仅调用 log4j (速度很慢,您必须为每个日志记录调用加载 Java),
  • 让 Java 进程运行以接受日志请求(使用以下之一与进程通信)这里的选项 共享内存的良好替代方案工控机用于Linux 上的 Java/C++ 应用
  • 使用 GCJ 原生编译调用 log4j 的 Java 程序,然后将其链接到您的 C 程序

Not easily, really. I can think of a few ways

  • call a Java program within your C code that just calls log4j (slow, you have to load up Java for each logging call)
  • leave a Java process running that accepts log requests (communicate with the process using one of the options here Good alternative to shared memory IPC for Java/C++ apps on Linux)
  • use GCJ to natively compile a Java program that calls log4j, then link it to your C program
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文