J2V8 icon indicating copy to clipboard operation
J2V8 copied to clipboard

Java Bindings for V8

Results 101 J2V8 issues
Sort by recently updated
recently updated
newest added

HI @irbull , Hope you are doing well. We are using J2V8 library in one of our application which is a data hungry application, alot of data flowing in the...

Hi! this is only a question, i'm writing a tool to run JS Code from a JS File, but i can't see a way to make an java static method...

Hi, @irbull , @drywolf , I'd like to report a vulnerability issue in **com.eclipsesource.j2v8:j2v8:linux_x86_64_4.8.0**. ### Issue Description **com.eclipsesource.j2v8:j2v8:linux_x86_64_4.8.0** depends on ***1*** C library(.so). However, I noticed that the C library...

I am a mobile developer at GM. zlib 1.2.11 was recently flagged by a blackduck scan for allowing memory corruption when deflating. Your most recent version of J2V8 is using...

Hi, We recently started replacing Nashorn components in our software with a J2V8 integration. While this all works very well on our development machines, it initially failed on our test...

I'm using v6.2.1 in my Android App, we implements setTimeout by `twin`, but j2v8 may occasionally crash in native. here is my java code ![1646877103017](https://user-images.githubusercontent.com/3637048/157572440-b7a6d673-1b88-4c33-ab1c-47ec2e06fdb9.jpg) ```log 2022-03-10 09:44:36.977 18860-19104/com.xxxxx.xxx E:...

when I execute runtime.executeVoidScript("function classify" + i + functionSplit); in a for loop, there will be a out of memory, I want to know how to remove the script binded...

Hello everyone, as the title might sound a bit confusing, please see the following example for the issue I am having: ``` val runtime = V8.createV8Runtime() try { runtime.executeVoidScript("var test...

Android Object Binding Sample ``` java V8Object v8Obj = new V8Object(v8); v8.add("tv", v8Obj); v8Obj.registerJavaMethod(tvResult, "setTextSize", "setTextSize", new Class[]{float.class}); v8Obj.registerJavaMethod(tvResult, "setTextSize", "setTextSize", new Class[]{int.class, float.class}); v8Obj.release(); ``` ``` javascript tv.setTextSize(50); ```...