Say I have a bunch of objects that I created in another class. I don't have a reference of them or an address.
Alright, before you assume, I have quite a bit of experience in Java. This is a problem I've been working for a few days on. I need some help brainstorming a solution.
Is there a way to get an object without having its reference? Conventional wisdom says no, and that's probably the answer I'd give for beginners in Java. However, I'm certain there's a way to do this because I've seen it in action before. Very hack-y and low-level.
Earlier today I was searching for direct memory access in Java. Here's what I have regarding direct memory management:
long newSize = Long.parseLong(System.getProperty("sun.arch.data.model")); // 32 bit or 64 bit?
long diffMemory = getUnsafe().allocateMemory(newSize);
getUnsafe().copyMemory(ch, 0, null, diffMemory, newSize); // Copy old memory from old location
Pointers p = new Pointers();
long offset = 0;
try {
offset = getUnsafe().objectFieldOffset(Pointers.class.getDeclaredField("pointer"));
} catch (Exception ex) {
ex.printStackTrace();
}
getUnsafe().putLong(p, offset, diffMemory); // put memory into a new Object that happens to be there
System.out.println(((Point)p.pointer)); // ch.toString will equal this.
public class Pointers {
Object pointer;
}
public Unsafe getUnsafe() { // This is the sun.misc.Unsafe class.
Unsafe unsafe = null;
try {
Field f = sun.misc.Unsafe.class.getDeclaredField("theUnsafe");
f.setAccessible(true);
unsafe = (Unsafe) f.get(null);
} catch (Exception ex) {
ex.printStackTrace();
}
return unsafe;
}
What this does is copy data from old memory into a new memory location. To use it, I would do something like so:
Point ch = new Point(3,4);
What this does is I create a Point object, get its address, copy it into a Pointers object for safekeeping, where I can then access its values.
Now, I imagine that getting an object without a reference would be similar. Maybe something to do with monitoring the memory to see what's accessing it and then directly getting that data and see if it makes sense? Searching through the heap/stack?