jnigi icon indicating copy to clipboard operation
jnigi copied to clipboard

Golang Java JNI library

Results 18 jnigi issues
Sort by recently updated
recently updated
newest added

Hi , I followed all the steps mentioned in README file i.e 1. setting up CGO_CFLAGS Here are platform details **Platform** : Ubuntu 22.04.1 LTS **JDK Path** : /usr/lib/jvm/java-17-amazon-corretto But...

Currently we cache class IDs (uintptr) so they don't need to be found using the findClass JNI function. But not method IDs which we call getMethodID for in each CallMethod....

Hi I wanted to ask how it is possible to pass a go func as an implementation to an object in JVM that implements the `java.util.function.Function` interface. Is there a...

I see this repo has quite a few forks, most of these have changed the name of the module to their respective names on github. Currently it's tekao.net/jnigi which is...

java code: public class GoSdkApplication { public static void main(String[] args) { System.out.println(args[0]); } } go code: package main import ( "log" "runtime" "github.com/timob/jnigi" ) func main() { if err...

Hi, we tried using the jnigi to connect java to go but even when we load the classpath, it still says class not found. project structure: ``` project: | ----...

How to express this type in golang:List Statement type is interface java:List statementList = new ArrayList(); golang:jnigi.NewObjectArrayRef("java/util/List")