views:

53

answers:

1

i need to know that can JavaFX application run into IPHONE IPAD? Is there any JavaFX runtime in these device.

+2  A: 

No it can't. The ipad cannot run JavaFX, Flash, Silverlight, or Java Applets. Apple has explicitly not allowed these. The basic options are HTML5/Javascript apps on the web or native apps which run on your phone. If you want to run Java on an ipad, the closest you can come is GWT which you can use to write a web app and host on a server. It cannot be installed on the phone as a native app (except perhaps through PhoneGap). The ipad user would then access your app through the web browser.

If you are serious about writing apps for a phone in Java, you should consider Android. You can write Android apps in Java, though again not in JavaFX.

Jay Askren
Not sure this is really relevant to the question, but for anyones information, JavaFX /should/ work on windows mobile. I tried it and failed because of the use of 3rd party libraries that required classes not in "Windows Mobile Java Edition". Damn ms for the toomanyeth time!
James