I have the following case:
I am writing a java program and I'd like to read inside of the memory of an external process (that is a process not started by my application)
Is this (easily) possible? Do I need to download external jar's?
Thanks!
I have the following case:
I am writing a java program and I'd like to read inside of the memory of an external process (that is a process not started by my application)
Is this (easily) possible? Do I need to download external jar's?
Thanks!
yes, with Java Native Interface and Inter Process Communication: JNI allow you to call "C" native libraries, you must implement a module with "IPC:Shared Memory" in C. and modify others programs to work with Shared Memory. But... you are developing the first layer of OSI, is better try with sockets or webservices.