[BinEd]  BinEd - Binary / Hex Editor

Variant: Library / Component

Free and open source library for binary/hex viewer/editor component written in Java.

Example usage screenshot

Downloads

Release Stable Development 
Library [ZIP] 0.2.1 [2023-12-30] [ZIP] 0.2.1 [2023-11-25]

Features

Web Demo

You can try BinEd library example running in browser.
Using CheerpJ by Leaning Technologies.

Limitations

Known Issues

Usage

Example component usage screenshot:

Usage screenshot

You can use this component for your own project using one of the following methods:

To use the component, create new instance and fill it with some data.

public class BinEdExample {

    public static void main(String[] args) {
        final JFrame frame = new JFrame("BinEd Frame");
        CodeArea codeArea = new CodeArea();
        codeArea.setContentData(new ByteArrayEditableData(new byte[]{1, 2, 3}));
        frame.add(codeArea);
        frame.setSize(1000, 600);
        frame.setVisible(true);
    }
}

Source Codes

GitHub Repository 
[GitHub] exbin/bined-lib-java