|
Jazillian translates legacy code to “natural” Javatm code
Jazillian “natural” Javatm source code is Java code that looks
as if it was hand written. It is easily readable Java code;
therefore it is highly maintainable and customizable. Jazillian
does not create difficult-to-understand, “dead-end” Java code.
The Jazillian generated Java code becomes the new application
code base completely eliminating the original legacy source code.
The Java application works today and becomes a great starting point.
For more details, see the What Jazillian Does page.
Translate COBOL to Java |
| HELLO.COB
|
| Hello.java
|
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
PROCEDURE DIVISION.
DISPLAY 'Hello, World!'. |
|
|
|
Translate C to Java |
| hello.c
|
| Hello.java
|
main(int argc, char *argv[]) {
printf("Hello, world!\n");
} |
|
|
|
Translate C++ to Java |
| hello.cpp
|
| Hello.java
|
main() {
cout << "Hello, world!\n";
} |
|
|
|
See complete example application translations for
COBOL to Java code,
C to Java code,
and C++ to Java code.
Contact us for more information.
|