up vote 36 down vote favorite
11
share [g+] share [fb]

Everybody talks about Silverlight and Flash and Flex and how cool etc...
Java applets are very similar to Silverlight and Flex, but Java applets have existed since 1995.

What is the reason we don't have any cool Java applet applications around?
My guesses so far: start up time of Java applet, restricted network connectivity, lack of dev tools, ...

Are there any cool Java applets around?
Please post links

link|improve this question

feedback

protected by Community Sep 22 '11 at 12:23

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

12 Answers

One of the main reasons no one uses applets is that microsoft released their own java vm which broke the java standard. It was a disaster for Java Applet writers. Applications would work on one vm, but not the other.

Another internal Microsoft document indicates that the plan was not simply to blunt Java/browser cross-platform momentum, but to destroy the cross-platform threat entirely, with the "Strategic Objective" described as to "Kill cross-platform Java by grow[ing] the polluted Java market." http://www.usdoj.gov/atr/cases/f1700/1762.htm

They effectively destroyed the reputation of Java Applets. Applets work perfectly fine now that microsoft has stopped intentionally ruining the user experience.

I'd choose Java Applets over Flash if you need parallelism, as Java supports multiple threads and flash does not.

link|improve this answer
1  
+1: Wow thank you for that link... I heard other horror stories, but this one is new. THX – Peter Gfader May 3 '09 at 6:52
4  
The Microsoft JVM was MUCH faster than the Sun JVM which made it attractive. After HotSpot-based Sun JVM came out, they were faster than the Microsoft JVM, so there is not much reason these days to use the Microsoft JVM. – Thorbjørn Ravn Andersen May 3 '09 at 7:01
9  
The IBM JVM was even faster than the Microsoft JVM. The reason people used the Microsoft JVM was microsoft shoved it down your throat if you used windows. The microsoft JVM was famously hard to remove. It just kept coming back. Moreover, fully removing it would often seriously break windows. People would update windows, then java applets would stop working. I worked help desk at the time, it would a complete hell for applet user and developers. A hell engineered by microsoft. – Ethan Heilman May 5 '09 at 18:28
5  
From the same link (internal MS document): "Screw Sun, cross-platform will never work. Let's move on and steal the Java language. That said, have we ever taken a look at how long it would take Microsoft to build a cross-platform Java that did work? Naturally, we would never do it, but it would give us some idea of how much time we have to work with in killing Sun's Java." – HDave Jul 30 '10 at 15:43
feedback

I would like to share this cool sample with you:

javafx-vs-flash-vs-silverlight

link|improve this answer
Wow, hard work. Does the author try to implement all the other demos with Java applets as well? – Peter Gfader May 3 '09 at 22:56
+1 for very cool demo link, got my CPU up to 100% running JavaFX + Flash ;) – Jakub Nov 16 '09 at 21:21
lol, it's really cool though – DaDa Nov 17 '09 at 16:26
2  
The Java demo does not load. Is this intentional to create a bad rap about Java? – Jus12 Dec 17 '10 at 11:01
feedback

Java applets start much slower than Flash as the complete Java environment needs to be started. Additionally the download process is slower and more tedious for Java than for Flash.

Basically Flash found the right way to do what Applets tried to do.

Edit: Please note that the Java 6u10 release brought a LOT of new stuff to Java WebStart and Applet-as-application! From http://mindprod.com/jgloss/javawebstart.html:

"Starting in JDK 1.6.0_10, Java Web Start can also distribute Applets. They run in an independent window that can be dragged and resized. The Applet code is not downloaded each time, but only when the code changes. "

I have not tried this myself, but hopefully this will result in new life to Applets as you are not restricted anymore to the "window in browser page" paradigm.

link|improve this answer
That sounds interesting, maybe we will see more "Silverlight vs Applets vs Flex" blogs and articles coming up. Thorbjorn: Have you created Java applets? If yes for what? Business apps maybe? – Peter Gfader May 3 '09 at 22:49
I just tried the SetClock java applet from the provided link. The user experience of this applet is not as nice as with Flash or Silverlight (slow, strange UI, ...). But, "Out of browser" functionality, seems to be no issue for java applets. What about accessing the DOM of a hosted page? or accessing the applet from the hosted page? – Peter Gfader May 3 '09 at 22:55
I have not created applets recently, but have debugged webstart applications with 6u10 sigh, which is where I read it. It does not make sense to talk about DOM of hosting page if there is no hosting page, but you can have an independent applet launched "properly". Is this technology you want to learn? – Thorbjørn Ravn Andersen May 4 '09 at 5:58
@Thorbjørn Ravn Andersen >>Is this technology you want to learn? Uhh, scary, I would say no. But I am just interested in Java applets, because we have them for such a long time... – Peter Gfader May 12 '09 at 23:26
Great answer, I'm actually interested in learning more about this. – NateDSaint Jul 17 '09 at 16:43
show 1 more comment
feedback

If I'm not mistaken, I believe RuneScape is a Java applet.

Java as a RIA has come a long way in the past couple of years. It doesn't have quite the market penetration that Flash does (some site that I don't recall showed Flash @ 99%, Java @ 91%), but it is still a viable option. If you are looking at creating "cool" effects with applets, there are a few APIs you can play with: PulpCore, jME (Java Monkey Engine)...

Java as a RIA is definitely not dead.

--

Sorry about the lack of links. This post made me want to sign up so I could respond and new users can only post one link, so I chose the best one.

link|improve this answer
1  
Dan: the link about the market penetration would be good! – Peter Gfader Nov 16 '09 at 22:59
2  
I found the link. It was on Sun's site, but was presented at JavaOne 2007. "Over 91% of Internet-connected PCs have Java enabled (Source: Omniture, April 2007)." - sun.com/aboutsun/media/presskits/javaone2007/index.jsp#stats However, according to riastats.com, only about 70% of browsers have Java installed compared to about 97% having Flash. I am not sure where or how either of these sites received their statistics. – Dan Nov 19 '09 at 14:30
feedback

Java applets and the others are for different purposes. Applets are for code-intensive applications; Java is for programmers. Flash and Silverlight are more for presentation, and a designer will feel quite at home using these. Obviously all of these technologies are versatile enough to overlap in their function quite a lot, but Flash and Silverlight are designed to make certain things easier. JavaFX is comparable to Flash and Silverlight.

I'm not saying Java applets can't be used to make "cool" things like you see in Flash all the time, but that it takes considerably more work to do so, and is thus not the common approach. I see a lot more advanced physics simulations in Java than Flash. I've yet to see any Silverlight in the wild.

link|improve this answer
1  
+1: Yeah, Silverlight is awesome for creating nice UI with good User experience (tools like blend and Visual Studio help a lot) and the separation between Code and UI is well done – Peter Gfader May 3 '09 at 6:53
feedback

I think the coupling of Flash with Flex makes this option as attractive for developers as for designers. ActionScript is ECMAscript compliant, and can be used like a "real" programming language. Moreover, this is also open source currently, though Adobe still charges for their Flex Builder IDE (based on Eclipse).

Ultimately, I think it comes down to penetration. The reason there are so many Windows applications is not because Windows is such a cool development environment. It's because that's where developers can sell the most software. Similarly, the main consideration for Web applications is browser compatibility. I think Flash/Flex still wins this currently, though the situation may change.

Note that Adobe tried to compete with Flash, but ultimately gave up and bought Macromedia. Now Microsoft is trying to compete. We'll see.

link|improve this answer
+1 "It's because that's where developers can sell the most software." --> And we see the same with the iPhone – Peter Gfader Sep 30 '09 at 4:34
feedback

Try PlanMieszkania.pl - it's a java applet where you can draw floor plan. This is a beta version with opengl (jogl) rendering. To display 3d window click on the last icon in the toolbar (small tv).

link|improve this answer
feedback

My personal opinion is that Flash is superior for really quick and dirty functionality, like animating images and providing audio on a website, and from a business perspective it's usually a better investment for a lot of interactive firms because their designers can crank out fairly professional dynamic interactive flash pieces faster than it would take for someone to hand-code something with a lot more flexibility.

But with the rising mobile market I think people are starting to be a little more open-minded about silverlight and javaFX, especially as the IDEs for these have evolved.

In my personal opinion, I'm getting old and cynical and hate having to pay for constant updates to Adobe's Creative Suite, and have slowly transitioned into more of a developer than a designer, so my vote always goes to the open-source solutions, and since I develop in Java I have a JRE platform instance running most of the time. But I agree with Thorbjørn Ravn Andersen that the recent changes in Java are potentially game-changing, and we'll see some drastic changes in the market soon.

link|improve this answer
feedback

Applets are a dead option as RIA compared to flash / silverlight today. even JavaFx, it's not a good path for a new RIA.

but, I know some cool applets out there like the one used in TopCoder.com competetion arena.

link|improve this answer
but why are they a "dead option"? – Peter Gfader Oct 15 '09 at 23:05
2  
flash is the god of RIAs today, Why? 1.High perf 2.all platforms 3.downloadable at 2-3 MBs 4.lightweight executables (swf). 5.short load time compared to Java Applets and JavaFx. 6.New! with flex 4 you'll be able to write native iphone apps!!! :) 7.proven nice UIs. 10.sun is barely advancing it's Java technologies compared to the fast growing .NET and flash/flex. sun was sold to Oracle lately and that just reflects sun's performance. silverlight is new compared to flash and doesn't have that support as flash cross platform/browser. that would make flash/flex the clear winner. – Bassel Alkhateeb Oct 16 '09 at 11:52
1  
Unless you have code already written in java and the switch to flash or silverlight will cost, Java (AS RIA) is a bad option. Java on the server side is still the best investment. – Bassel Alkhateeb Oct 16 '09 at 11:55
1  
It is much easier for a Java programmer to write an applet and deploy it, than to learn Flash first. – Thorbjørn Ravn Andersen Jan 21 '10 at 21:02
feedback

I don't know much about Java, but I've been looking into the whole Java vs. Flash ordeal... I won't look at Silverlight, though, building that will probably make me cry as hard as developping ASP.NET.

I used to hatehatehate Java Applets. They were unstable, caused my browser to refresh halfway through using it, took a long-ass time to load and never really looked that good. That's when Shockwave started to hit the net, and I saw it was good, and stable, and I didn't bother with loading time or processor use.

Many years later, Shockwave had turned to Flash, and later on, Shockwave and Flash appearantly became two diffirent things! I started programming with Flash, it was easy, and fun. And expansive? far from it. I could develop AS3 for free using FlashDevelop, when I worked on windows, that is. I got introduced to papervision3D, grabbed alternatives like Sandy, Alternativa, and Away3D, checked processor stress, enabled Hardware acceleration. Then I found a game called minecraft. Maybe not that much of an awesome game to some, amusing as it is, it ran a lot better than any Flash or WebGL Application would in the same place. And just now, I found out Microsoft had Deliberately ruined the experience for me in the past. The horrible gut feeling Java gave me appearantly wasn't Java's fault at all.

Very basically, Flash or Shockwave is an easy-to-program solution for rich internet applications, but should best be kept at just RIA's, even with Hardware acceleration, you can't go overboard. Java posesses a lot more raw power for something that's executed on the client side, but has a pretty shabby reputation, even though some kickass games and the Android OS is written in Java. I won't touch Silverlight, seeing it's most probably the rape-child of Microsoft creaming inside Java.

link|improve this answer
feedback

I have an entirely chess website developed around applets because I have the necessity to embed in the client side a chess engine that need a lot of computational power. I have an applet to play against the computer, another applet to solve checkmate and tactics problems, another one to view FEN positions and so on... Here you can view the applet for checkmate problems

http://www.ideachess.com/chess_tactics_puzzles/checkmate_index

in which there is a chess engine embedded that confute player wrong attempts. The applet is fully integrated into the web page: retrieves puzzles and sends results to the server side. Flex is too slow for the chess engine so I've chosen Java applets.

link|improve this answer
feedback

javafx is changing from using javafx script to just being available in pure java code this will be out in the second half of 2011.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.