Java wrapper question

Hello everyone:

I have a question regarding Java and C/C++ code. I have an amazon appstream class written in C or C++ I don’t know exactly. The amazon appstream is a service that allows you to stream games from the cloud (you know the typical cloud gaming).

The problem I have is I don’t know C/C++, I only know Java. I could learn C/C++ in a couple of weeks but I don’t want to right now. So, are there ways or tools I could use to automatically create Java wrappers for these Amazon Appstream libraries that were written in C/C++, without me having to know C/C++?

Right now I think these tools might help me: Swig or jniwrapper or Gluegen.

I found the answer here.

I wouldn’t expect you do learn enough in a few weeks to make much sense of idiomatic C++ code.
C++ is similar enough to Java that you won’t notice where your Java knowledge misled you into wrong assumptions of C++ semantics. RAII, templates and traits would probably the most alien concepts there.
C could work well enough. The main stumbling block there would be array and pointer semantics.