是否可以使用 JNA/JNI 访问应用程序的运行实例?
我正在为 Java 应用程序编写一个测试引擎,其中一些代码是用 C 编写的。该应用程序使用 JNI 来访问其本机部分。
在我正在编写的引擎中,我使用 Fest 来控制 UI 并执行测试。然而,我在处理用 C 编写的部分时很盲目。我想知道是否可以使用 JNA 或 JNI 来访问应用程序的本机部分。我相信应用程序已经运行的事实在这里是一个大问题。
I'm writing a test engine for a Java application that has some of the code written in C. This application uses JNI to access it's native part.
In the engine I'm writing, I use Fest to control de UI and perform the tests. However, I,m blind when dealing with the part that is written in C. I wonder if I can use JNA or JNI to access the native part of the app. I believe that the fact that the application is already running is huge issue here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 监控和管理来访问正在运行的 java 应用程序
对于 Java 平台(以及诸如 之类的工具jvisualvm 和 jconsole) ,并使用 JavaTM 平台调试器架构 (JPDA)
所有这些都有点复杂...最有用的是第一个。
You can access to a running java application with Monitoring and Management
for the Java Platform (and tools like jvisualvm and jconsole), and with JavaTM Platform Debugger Architecture (JPDA)
All that is a little complicated... The most useful is the first.