Skip to content

Instantly share code, notes, and snippets.

View 0130w's full-sized avatar
🏸
Working at home

MyAngelRamona 0130w

🏸
Working at home
View GitHub Profile
@santa4nt
santa4nt / HelloJNI.java
Last active June 2, 2024 17:19
Sample JNI/C++ HelloWorld
public class HelloJNI {
static {
System.loadLibrary("hello"); // loads libhello.so
}
private native void sayHello(String name);
public static void main(String[] args) {
new HelloJNI().sayHello("Dave");
}