简体   繁体   中英

How to convert existing javascript to java to use with GWT?

Is there a tool to convert javascript to java, so I can handle the project using GWT?

update

For those who don't know, GWT (Google Web Toolkit) is a toolkit to write Java and get Javascript, so my question.

What exactly do you have in mind? If you're looking for some sort of automatic tool, that generates GWT Java code from Javascript, then I'm afraid there's no such thing.

You can (and should) use JavaScript Native Interface (JSNI), probably in combination with JavaScript Overlay Types (JSO) to wrap your existing Javascript code, so that it's possible to interface with it from GWT's Java code. See the Getting to really know GWT, Part 1: JSNI (and Part 2 ) post on GWT's offcial blog for some pointers and use cases.

As a proof-of-concept, I wrote a translator that converts a small subset of JavaScript into Java. It is based on the transpiler library for SWI-Prolog:

:- use_module(library(transpiler)).
:- set_prolog_flag(double_quotes,chars).
:- initialization(main).
main :- 
    Input = "function add(a,b){return a+b;} function squared(a){return a*a;} function add_exclamation_point(parameter){return parameter+\"!\";}",
    translate(Input,'javascript','java',X),
    atom_chars(Y,X),
    writeln(Y).

This is the Java source code that is generated by this program:

public static String add(String a,String b){
        return a+b;
}
public static int squared(int a){
        return a*a;
}
public static String add_exclamation_point(String parameter){
        return parameter+"!";
}

I'm gonna go with a simple "no"

JavaScript and Java are so completely different that I can't imagine there'd be one.

Ask Google how they do that... Just joke :)

If seriously I have not heard about such open common tool for interpreting Javascript to Java...

At a theoretical level, you could use Rhino compiler to turn Javascript into Java class files, but the project seems mostly abandoned nowadays, and it would be crazy to use it with GWT to turn the result back to JavaScript.

For GWT, as you are eventually going back to Javascript anyway, you should use the JavaScript native interface to call existing Javascript code.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM