vote up 3 vote down star
1

Are there any good tools out there for automatically converting non-Java source code into Java source?

I'm not expecting something perfect, just to get the worst of the grunt work out of the way.

I guess there is a sliding scale of difficulty. C# should be relatively easy (so long as you ignore all the libraries). (well written) C++ not so bad. C requires making a little OO. (Statically type) functional languages may be easy to grok. Dynamic OO languages may require non-local analysis.

flag

80% accept rate

6 Answers

vote up 0 vote down

The language conversion is fairly simple, but you will find the libraries are different. This is likely to be most of your work.

link|flag
vote up 0 vote down

If you just want to use some legacy C/Pascal code, you could also use JNI to call it from Java.

If you want to run it in a Java applet or similar constrained environment, and it does not have to be very efficient, you can use NestedVM (which is a MIPS to Java bytecode converter) in conjunction with a gcc cross-compiler that compiles to MIPS). But don't expect to get readably Java code from that.

link|flag
The NestedVM toolchain is rather heavy and a bit outdated. Bascially you convert MIPS instructions to Java Byte Code (MIPS32 was chosen for being the closest to the JVM ) – Thorbjørn Ravn Andersen Oct 25 at 16:04
vote up 0 vote down

ADA to Java can be done with a find-and-replace!

link|flag
how about the reverse? I'm a java guy wanting to learn ADA – WolfmanDragon Dec 12 '08 at 18:45
ADA is not too different, templates are every similar, packages are like java static classes, ADA classes are like Java ones. Standard IO is generic in ADA<?>. Only weird thing is package extension, and that files trees and package names don't line up 1:1 like they do in Java. So like C++ :) – Tim Williscroft Jan 12 at 6:16
vote up 2 vote down

Google: ANTLR

link|flag
Good point, but depending on the source-language it will be a huge thing to do. – rebugger Oct 14 at 9:47
vote up 3 vote down

One thing you can try is find a Java bytecode compiler for the language you're talking about (there are JVM compilers for all kinds of languages) and then decompile the bytecode back into Java using a decompiler like Jad.

This is fraught with peril. The regenerated code will suck and will probably be unreadable.

link|flag
vote up 1 vote down

Here's a tool for converting C# to Java.

For any language that doesn't have nearly identical language features this would be non-trivial. Core language code would be fairly straight forward to convert between languages, but what about all of the references to libraries you'd find in real production code?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.