Files
weee/bindings/java
iris 802798ce3c Squashed 'external/capstone/' content from commit e46f64fa
git-subtree-dir: external/capstone
git-subtree-split: e46f64fadb351e9ecd05264fab26f2772feb0994
2026-05-11 11:55:07 +02:00
..

This has been tested with OpenJDK version 6 & 7 on Ubuntu-12.04 and Arch Linux-3.11, 64-bit.

  • OpenJDK is required to compile and run this test code. For example, install OpenJDK 6 with:

    $ sudo apt-get install openjdk-6-jre-headless openjdk-6-jdk

  • Java Native Access is required to run the code, you can install it with:

    $ sudo apt-get install libjna-java

  • To compile and run this Java test code:

    $ make
    $ ./run.sh
    

This directory contains some test code to show how to use Capstone API.

  • TestBasic.java This code shows the most simple form of API where we only want to get basic information out of disassembled instruction, such as address, mnemonic and operand string.

  • Test.java These code show how to retrieve architecture-specific information for each architecture.