Search code examples
javapythonjythoncode-translation

Automated Python to Java translation


Is there a tool out there that can automatically convert Python to Java? Can Jython do this?


Solution

  • It may not be an easy problem. Determining how to map classes defined in Python into types in Java will be a big challange because of differences in each of type binding time. (duck typing vs. compile time binding).