vote up 12 vote down star
2

When I use Java applets, they tend to be slow, don't integrate very well with the browser environment and often require a few click throughs ("No, I don't want to give this unsigned application free reign of my hard disk").

So, I'm curious.

Are these problems insurmountable? Are there Java applets out there which integrate well with the browser experience (in, for example, the way a well-designed Flash application does?) Can you point out any examples of really "nice" Java applets?

I'm asking this because I want to know if I should be taking a more serious look at Java-in-the-browser, or if Flash will remain dominant for the foreseeable future.

Edit: Unintentional flame bait has been removed. Sorry for any offence caused.

flag

69% accept rate
java.sun.com/applets/other/TumblingDuke – skaffman Jul 8 at 16:14
1  
While the tone could be considered slightly offensive, it's a good question. Are java apps typically ugly because people aren't doing it right or is there something wrong with the library? – Spencer Ruport Jul 8 at 16:44
The question is clearly a troll (a.k.a. "subjective and argumentative"). – Tom Hawtin - tackline Jul 8 at 16:53
1  
I was tempted to downvote the question or flag it for closing – but the asker's got a valid point! Much of the antipathy towards Java stems from the consistently ugly GUIs (not even limited to applets). A slightly better-worded question would be: why is the default styling of Java applets and other UI libraries so abysmally bad? – Konrad Rudolph Jul 8 at 19:06
1  
Thanks – I hadn't realized how, err, bias the question was. I hope the updates help. – David Wolever Jul 8 at 19:09
show 2 more comments

15 Answers

vote up 18 vote down check

The Facebook asynchronous image uploader is a Java applet.

Update: Apparently not developed in house at Facebook. This seems to be the product.

Amendment: Now that the question has been updated to be a bit more concise, I thought I'd add more to this answer.

This kind of problem, a mass image uploader (in this case), is the kind perfectly solved by a Java applet. Why?

  1. It uses native UI elements, so users are not confused, or have to learn a new interface.
  2. It can save massive amounts of bandwidth and overhead, because image transformations, such as resizing and cropping, can take place on the client side, rather than the server.
  3. Write once, deploy everywhere (almost, sorta).
link|flag
2  
+1 for a non-game answer :) – Alex B Jul 8 at 16:27
vote up 8 vote down

Visual Thesaurus is the coolest / best applet I know of.

link|flag
1  
Oooh, that is a good one. – jason Jul 8 at 16:53
ah, that is really nice. And the "top bar" (for lack of a better name) integrates really well with the rest of the page. Thanks! – David Wolever Jul 8 at 19:30
Shame that it is not free as I don't have so much of a need to pay for such a product, but it looks interesting... – Mario Ortegón Aug 1 at 23:13
vote up 5 vote down

Check out PulpCore. A really awesome Java applet framework: http://www.interactivepulp.com/

Performance for it seems pretty amazing too if you check it out on bubblemark.com

link|flag
vote up 4 vote down

A few things...

Some game sites, like popcap.com, use Java applets for their games, and they look pretty good and are very usable.

As far as "why is that button cropped?" - that's probably a layout manager issue. See my article on layout managers, in particular:

http://java.sun.com/developer/onlineTraining/GUI/AWTLayoutMgr/shortcourse.html#whyNeed

link|flag
vote up 3 vote down

Another game which is in Java (though not an applet) is Puzzle Pirates. It's not exactly beautiful but it's cute and it's very addictive. Also, it's very speedy and smooth (which has been a knock against Java applets).

link|flag
It's not an applet though. – Michael Borgwardt Jul 8 at 18:02
Ah, you are correct. Somehow I missed that in the original question. Thanks for pointing that out. I've updated my response. – seth Jul 8 at 18:54
vote up 2 vote down

In high school I used to play a ton of Yahoo Games and I'm pretty sure those are all java applets. It looks like Yahoo have updated their site since I went there last but you can still find all of the old games here.

link|flag
vote up 2 vote down

There are many nice looking applets created with Processing (which is basically Java with some fancy graphics libraries included).

Just take a look at this visualization.

Telekom image 4b

link|flag
Thumbs up for Processing; a lot of the Chrome demos are written in it as well. – Carl Nov 27 at 15:28
I think the Chrome demos you're thinking of are in Processing.js Processing.js is a port of the 2D context from Processing. Processing can output applets. Processing.js runs in a Javascript interpreter. – slim Nov 27 at 15:39
technically, if the input and output are similar or the same, then they're both Processing. Processing the program outputs Processing as Java, Processing.js outputs Processing as JavaScript. In any case, Processing is awesome heh. – omouse Nov 28 at 23:08
vote up 1 vote down

The MMORPG Runescape uses a Java applet as a client, and works very nicely, although the graphics aren't nearly as good as other games of the type I've seen. Jagex, the publishers, also have a game site called Funorb.

link|flag
vote up 1 vote down

Java applets are like flash scripts - They can be used for good, but are often used for evil (e.g., annoying banners). IMHO the main reason that they didn't catch on is that they require tended to require too much skill and used AWT/Swing which produces worse UIs than what a designer with little programming skills could achieve with flash.

I would say that yes, they still exist, but more for business goals that don't require pretty UIs. For example, A lot of web-based statistics calculation tools are based on nice applets.

link|flag
vote up 1 vote down

It's certainly possible. Java2D (the standard graphics component in Java) is capable of rendering beautiful stuff. A big problem is that the default Swing Look and Feel is ugly. I believe Java 7 will have a better one, but there are also very beautiful third party ones such as Substance. I've personally developed a small Java applet game which, apart from the jagged text in the intro screen (which is a bitmap, not rendered text) is visually indistinguishable from a Flash game.

link|flag
vote up 1 vote down

My mom is addicted to the casual gaming at pogo.com, and I've gotta say, they've done an amazing job at fun, easy to learn, nontraditional games that look perfect. I'd love to see their code, honestly.

link|flag
vote up -1 vote down

Hopefully they will with JavaFX.

link|flag
vote up -1 vote down

I'm interested in alife, and generally not a java fan, but I like this java applet which implements the Wator predator/prey model.

link|flag
vote up -7 vote down

they rename java applets to JavaFx ... but i don't know whether it will success or will su*k like applets :)

for me ... loading applets is not fun at all ... you see java words with loading animation. while in flash, while you waiting loading the swf you can play games (just stupid funny games) :)

I wish JavaFx could be useful, I like the new syntax .. like one in css .. simple and elegant and also easier to learn :)

link|flag
3  
Applets are still applets. – Tom Hawtin - tackline Jul 8 at 17:04

Your Answer

Get an OpenID
or

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