How to dump memory from some address ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jlagoon
    New Member
    • Jul 2007
    • 2

    How to dump memory from some address ?

    Hi folks,

    I wonder can I directly read from some memory address
    (as in C/C++ by pointer to memory)
    and would you show me some implementation.
    By the way, It's like to be implemented with java.io.* ...
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by jlagoon
    Hi folks,

    I wonder can I directly read from some memory address
    (as in C/C++ by pointer to memory)
    and would you show me some implementation.
    By the way, It's like to be implemented with java.io.* ...
    No you can't; Java abstracted primitive concepts such as memory and its
    addresses away from you. If you want C you know where to find it ;-)

    kind regards,

    Jos

    Comment

    • odefta
      New Member
      • Jul 2007
      • 18

      #3
      Originally posted by JosAH
      No you can't; Java abstracted primitive concepts such as memory and its
      addresses away from you. If you want C you know where to find it ;-)

      kind regards,

      Jos
      Yes it's true... that's Java

      Comment

      Working...