Jeremy
Jeremy

Reputation: 834

How feasible is it to convert a Java to JavaScript project?

I have a project I maintain in Java that runs primarily as an applet. I am finding that Applets are simply unpractical and dangerous for browser games as most end-users ignorantly trust any applet because it runs in the browser (this is also what gives applets such a terrible reputation.)

I want to compile my Java project to JavaScript and use HTML5 for rendering. There are a couple problems I can see with this though...

Thanks.

Upvotes: 4

Views: 13136

Answers (2)

lastboy
lastboy

Reputation: 576

Hmm.. GWT compiles java to JavaScript you can use it.

Another possibility would be using Rhino

Or just expose REST services and create an HTML5 web application using it.

Edit: BTW search in the forum. I found some questions like this one.

Upvotes: 5

Flight Odyssey
Flight Odyssey

Reputation: 2287

I found this tool called PlayN which may be what you're looking for. I've never used it before, but it looks promising. Of course, it may require rewriting your Java source to use their API, which means, as others have said, you're probably best off just manually porting to JavaScript.

Upvotes: 3

Related Questions