sun.misc.Unsafe:如何从地址获取字节

时间:2009-09-29 05:49:29

标签: memory memory-address unsafe

我听说有一种方法可以从内存中读取值(只要内存由JVM控制)。 但是,如何从地址8E5203获取字节?有一种名为getBytes(long)的方法。我可以用这个吗?

非常感谢! 皮特

1 个答案:

答案 0 :(得分:2)

您无法直接访问任何内存位置!它必须由JVM管理。安全异常或EXCEPTION_ACCESS_VIOLATION都会发生。这可能会使JVM本身崩溃。但是如果我们从代码中分配内存,就可以访问字节。

public static void main(String[] args) {
     Unsafe unsafe = null;

        try {
            Field field = sun.misc.Unsafe.class.getDeclaredField("theUnsafe");
            field.setAccessible(true);
            unsafe = (sun.misc.Unsafe) field.get(null);
        } catch (Exception e) {
            throw new AssertionError(e);
        }

        byte size = 1;//allocate 1 byte
        long allocateMemory = unsafe.allocateMemory(size);
        //write the bytes
        unsafe.putByte(allocateMemory, "a".getBytes()[0]);
        byte readValue = unsafe.getByte(allocateMemory);            
        System.out.println("value : " + new String(new byte[]{ readValue}));
}