Questions tagged [jcc]

C++ code generator of wrappers for Java libraries

JCC is a C++ code generator that produces a C++ object interface wrapping a Java library via Java's Native Interface (JNI). JCC also generates C++ wrappers that conform to Python's C type system making the instances of Java classes directly available to a Python interpreter.

When generating Python wrappers, JCC produces a complete Python extension module via the distutils or setuptools packages.

Welcome to JCC, PyLucene's code generator

32 questions
0
votes
1 answer

Overriding a Java class from Python using JCC. Is that possible?

I'm using JCC to create a Python wrapper for a Java library and I need to override a method from a Java class inside the Python script. Is it possible? How can you do that if it is possible?
dagilpe
  • 147
  • 1
  • 14
0
votes
2 answers

dll fails to load in running jcc

When running: python -m jcc.main I get the error C:\Python26\python.exe: DLL load failed: The specified module could not be found I checked and the directory that jcc.dll is in the PATH. Any help would be very much appreciated.
Cenoc
  • 11,172
  • 21
  • 58
  • 92
1 2
3