• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

what is alternate to java applets

 
Greenhorn
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Is there any alternate java technology to Applets, that can be used to build a UI for IE and Firefox users?
Are applets still IN? or have they gone OUT

Thanks
 
Bartender
Posts: 1952
7
Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, I guess a Java Web Start application would be the closest thing to an applet from a development and deployment prespective.
Although such an application isn't embedded in a webpage, whereas an applet is.
Alternatively, there are lots of JavaScript libraries that allow you to create some pretty fancy looking GUI components, but JavaScript isn't Java.
If you don't mind wondering into the realm of server side applications you could have a look at frameworks like Google Web Toolkit (GWT).
GWT allows you to program a GUI in Java, much like you would a Swing GUI for an applet, and the framework then translates that to a JavaScript result.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic