Is it possible to access a running instance of an app using JNA/JNI?
Posted
by Carlos Blanco
on Stack Overflow
See other posts from Stack Overflow
or by Carlos Blanco
Published on 2010-06-08T19:57:03Z
Indexed on
2010/06/08
20:22 UTC
Read the original article
Hit count: 285
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.
© Stack Overflow or respective owner