java.cr alternatives and similar shards
Based on the "Low level bindings" category.
Alternatively, view java.cr alternatives based on common mentions on social networks and blogs.
-
termbox-crystal
Bindings, wrapper, and utilities for termbox (terminal interface library) in Crystal -
serialport.cr
Crystal bindings for libserialport: cross-platform library for accessing serial ports.
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of java.cr or a related project?
Popular Comparisons
README
Java Native Interface (JNI) bindings (and generator) for Crystal
Generate Java bindings through the Java Native Interface (JNI) automatically
from Java classes using the javap
tool distributed with the JDK.
The main goal is to generate bindings for the Android SDK. This project is thus
for the most usable widget and communication classes (e.g.
android.app.Activity
, android.os.Handler
or android.widget.TextView
).
More complex classes, mostly those relying on generics and wildcards will
probably fail, or generate invalid Crystal code.
Install
Add the shard to your shard.yml
dependencies:
dependencies:
java:
github: ysbaddaden/java.cr
Usage
Let's generate some bindings for an Android project. First we must add the
target platform android.jar
to CLASSPATH
. For example. Let's also add the
project local folder where the Android SDK will store the compiled classes.
export CLASSPATH=bin/classes:/opt/android-sdk/platforms/android-23/android.jar
Let's generate some bindings, this will load the definition of the specified
classes, potentially following classes found, then generate the Crystal bindings
into namespace separated folders. Pass --help
for the full list of options.
lib/java/bin/generator --output src --no-follow \
android.app.Activity \
android.os.Bundle \
android.os.Message \
android.os.Handler
You may now just use it:
require "android/os/bundle"
require "android/os/message"
bundle = Android::Os::Bundle.new
bundle.put_char_sequence("action", "setText")
bundle.put_char_sequence("text", "hello world")
message = Android::Os::Message.new
message.set_data(bundle)
TODO
- [ ] fix bugs
- [ ] write tests
Authors
- Julien Portalier (creator, maintainer)