javacpp icon indicating copy to clipboard operation
javacpp copied to clipboard

The missing bridge between Java and native C++

Results 105 javacpp issues
Sort by recently updated
recently updated
newest added

I've had great success on Linux with javacpp, but my particular library doesn't play nice with Windows' CL compiler. I'm attempting to use Cygwin with gcc to run javacpp on...

Hello, The first line of the following is raising `org.bytedeco.javacpp.tools.ParserException` saying : `Unexpected token '::'`. ``` Exception in thread "main" org.bytedeco.javacpp.tools.ParserException: "thefileconcerned.h":Unexpected token '::' at org.bytedeco.javacpp.tools.Token.expect(Token.java:114) at org.bytedeco.javacpp.tools.Parser.namespace(Parser.java:3954) at org.bytedeco.javacpp.tools.Parser.declarations(Parser.java:4077)...

enhancement
help wanted

I've encountered a problem accessing classes with newer versions of java: Uncaught Exception: java.lang.UnsatisfiedLinkError: java.net.MalformedURLException: Unknown protocol: jar java.lang.UnsatisfiedLinkError: java.net.MalformedURLException: Unknown protocol: jar at org.bytedeco.javacpp.Loader.loadLibrary(Loader.java:1759) at org.bytedeco.javacpp.Loader.load(Loader.java:1345) at org.bytedeco.javacpp.Loader.load(Loader.java:1157) at...

help wanted
question

Hello. I've found the following issue. I built dll-library of generated JNI C++ integration code and tried to load it via Loader.loadLibrary but I got a NullPointerException. Here is the...

bug
help wanted

Hello. I would like to suggest some enhancment that I think can make javacpp a little bit more user-friendly. I mean when user tries to use javacpp in some Gradle...

enhancement
help wanted

``` // in header file int (* testFunc)(char[][256] value); ``` ``` // in generated java file public static class TestFunc_BytePointer extends FunctionPointer { static { Loader.load(); } public TestFunc_BytePointer (Pointer...

enhancement
help wanted
question

Hi, this is my first sketch for a Java side automatic downcast feature. To use it do as follow: The base type of the class hierarchy is annotated with `@Downcast`...

With this PR I suggest changes to reduce the runtime of resource extraction and library search performed by the javacpp.Loader. My benchmark is a stripped variant of the embeddedpython.Python that...

In order to resolve issue #506 I implemented a solution based on @timothyjward suggestion(https://github.com/bytedeco/javacpp/issues/506#issuecomment-886551437) to support extraction of directories in case javacpp is a bundle in a OSGi runtime. The...

This PR aims at changing the way `position` `limit` and `capacity` are interpreted when the `Pointer` is cast from a type to another. The current behavior is counter-intuitive and may...