Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As far as I understand it, the JVM should prevent a user from accessing the system memory. I want to create a program like Dwarf Therapist. What do I need to be researching in order to achieve this?

share|improve this question
3  
what does editing "system memory" have to do with creating a game ? – Cozzamara Jan 21 at 0:20
@Cozzamara: Good question, the only thing I could think of is that the 'Therapist' runs concurrently with the game and "spies" on the game process' memory to manage the dwarves. – GregS Jan 21 at 0:27

closed as not a real question by Nix, Don Roby, A--C, t0mm13b, Linger Jan 21 at 0:39

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

One approach would be to research JNI and the native calls you need to make it happen

share|improve this answer
1  
How does one access "system memory" from JNI? – user166390 Jan 21 at 0:25
Write a module in C or C++ to do what you want and call it from JNI. If you can do it in C you can call it in Java. – Slartibartfast Jan 21 at 13:30

Not the answer you're looking for? Browse other questions tagged or ask your own question.